We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
nix flake init
1 parent 629672a commit 388a708Copy full SHA for 388a708
modules/nix-cli/default.nix
@@ -1,4 +1,5 @@
1
{
2
+ pkgs,
3
lib,
4
flakeInputs,
5
system,
@@ -26,6 +27,15 @@ let
26
27
buildInputs = patchDeps (prev.buildInputs or [ ]);
28
nativeBuildInputs = patchDeps (prev.nativeBuildInputs or [ ]);
29
propagatedBuildInputs = patchDeps (prev.propagatedBuildInputs or [ ]);
30
+
31
+ patches = (prev.patches or [ ]) ++ [
32
+ (pkgs.fetchpatch {
33
+ url = "https://github.com/DeterminateSystems/nix-src/pull/180.patch";
34
+ hash = "sha256-7G9nX8YT+B9nZXEBICwkAyj2vmSHNqC2C2+dlOpQuIg=";
35
+ relative = "src/nix";
36
+ revert = true;
37
+ })
38
+ ];
39
});
40
in
41
0 commit comments