From 9000399c7c14b3953500f4427655640698a8505e 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 344cbdf..e136cb7 100644 --- a/flake.nix +++ b/flake.nix @@ -44,6 +44,9 @@ buildInputs = with pkgs; [ ]; + strictDeps = true; + __structuredAttrs = true; + src = ./.; }; @@ -100,10 +103,13 @@ }; devShells.default = craneLib.devShell { - LD_LIBRARY_PATH = lib.makeLibraryPath dlDeps; + env.LD_LIBRARY_PATH = lib.makeLibraryPath dlDeps; inputsFrom = [ crate ]; packages = [ pkgs.rust-analyzer ]; + + strictDeps = true; + __structuredAttrs = true; }; } );