iced-template: use strictDeps and __structuredAttrs

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

View file

@ -41,6 +41,9 @@
buildInputs = with pkgs; [ buildInputs = with pkgs; [
]; ];
strictDeps = true;
__structuredAttrs = true;
src = ./.; src = ./.;
}; };
@ -81,7 +84,7 @@
packages.default = crate; packages.default = crate;
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
LD_LIBRARY_PATH = lib.makeLibraryPath dlDeps; env.LD_LIBRARY_PATH = lib.makeLibraryPath dlDeps;
inputsFrom = [ crate ]; inputsFrom = [ crate ];
@ -92,6 +95,9 @@
rustfmt rustfmt
rust-analyzer rust-analyzer
]; ];
strictDeps = true;
__structuredAttrs = true;
}; };
} }
); );