From f3451a8660fbb74095ce5b80717cc805be766126 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 20 Jan 2025 15:37:14 -0600 Subject: [PATCH] actually only use the right buildinputs --- pkgs/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/default.nix b/pkgs/default.nix index ab19802..ba06175 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -11,7 +11,7 @@ let # make attic also use the "no check lix" atticPackages = pkg: { "${pkg}" = (flake.pkgs "lix-attic").${pkg}.overrideAttrs (oldAttrs: { - buildInputs = oldAttrs.buildInputs ++ [ lix ]; + buildInputs = [ pkgs.boost lix ]; }); };