From e9847f58c7232b648fb187dddaece432fe42e920 Mon Sep 17 00:00:00 2001 From: electria Date: Sat, 22 Aug 2026 17:42:04 -0700 Subject: [PATCH] iced-template: use strictDeps and __structuredAttrs --- flake.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 785a77e..a0d008a 100644 --- a/flake.nix +++ b/flake.nix @@ -41,6 +41,9 @@ buildInputs = with pkgs; [ ]; + strictDeps = true; + __structuredAttrs = true; + src = ./.; }; @@ -81,7 +84,7 @@ packages.default = crate; devShells.default = pkgs.mkShell { - LD_LIBRARY_PATH = lib.makeLibraryPath dlDeps; + env.LD_LIBRARY_PATH = lib.makeLibraryPath dlDeps; inputsFrom = [ crate ]; @@ -92,6 +95,9 @@ rustfmt rust-analyzer ]; + + strictDeps = true; + __structuredAttrs = true; }; } );