iced-template: use strictDeps and __structuredAttrs

This commit is contained in:
electria 2026-08-22 17:42:04 -07:00
commit 9000399c7c
Signed by: electria
SSH key fingerprint: SHA256:8LlB3ucPbBHqozqkhsNbaV5oG3SlzzqUj8FZDL6IPQs

View file

@ -44,6 +44,9 @@
buildInputs = with pkgs; [ buildInputs = with pkgs; [
]; ];
strictDeps = true;
__structuredAttrs = true;
src = ./.; src = ./.;
}; };
@ -100,10 +103,13 @@
}; };
devShells.default = craneLib.devShell { devShells.default = craneLib.devShell {
LD_LIBRARY_PATH = lib.makeLibraryPath dlDeps; env.LD_LIBRARY_PATH = lib.makeLibraryPath dlDeps;
inputsFrom = [ crate ]; inputsFrom = [ crate ];
packages = [ pkgs.rust-analyzer ]; packages = [ pkgs.rust-analyzer ];
strictDeps = true;
__structuredAttrs = true;
}; };
} }
); );