mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 15:41:16 +00:00
Upstream has addressed this in release 0.4.3 and later with commit dc88e96 "Integrate gnulib properly". Since these versions of patchutils need to stay around for fetchpatch / fetchpatch2 Fixed-Output Derivations, we'll need to carry these patches.
16 lines
334 B
Nix
16 lines
334 B
Nix
{ callPackage, python3, ... }@args:
|
|
|
|
callPackage ./generic.nix (
|
|
args
|
|
// {
|
|
version = "0.4.2";
|
|
sha256 = "sha256-iHWwll/jPeYriQ9s15O+f6/kGk5VLtv2QfH+1eu/Re0=";
|
|
# for gitdiff
|
|
extraBuildInputs = [ python3 ];
|
|
patches = [
|
|
./Make-grepdiff1-test-case-pcre-aware.patch
|
|
./getenv-signature.patch
|
|
];
|
|
}
|
|
)
|