Merge pull request #145238 from lovesegfault/nixpkgs-review-nix-stable

nixpkgs-review: use nix (2.4)
This commit is contained in:
Jörg Thalheim 2021-11-09 19:47:20 +00:00 committed by GitHub
commit 37bd69672d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
{ lib
, python3
, fetchFromGitHub
, nixUnstable
, nix
, git
}:
@ -17,7 +17,7 @@ python3.pkgs.buildPythonApplication rec {
};
makeWrapperArgs = [
"--prefix" "PATH" ":" "${lib.makeBinPath [ nixUnstable git ]}"
"--prefix" "PATH" ":" "${lib.makeBinPath [ nix git ]}"
];
doCheck = false;