Skip to content

Commit

Permalink
Fix build inputs for tests in flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
aleasims committed Apr 18, 2024
1 parent 5cdcb8e commit 36614fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
(makeCrypto3Derivation { inherit system; }).overrideAttrs (oldAttrs: {
name = "Crypto3-${name}-tests";

nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ oldAttrs.propagatedBuildInputs ++ [
(if compiler == "gcc" then pkgs.gcc else pkgs.clang)
];

Expand Down

0 comments on commit 36614fd

Please sign in to comment.