7517df9ddb
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.
15 lines
318 B
Nix
15 lines
318 B
Nix
{ callPackage, ... }@args:
|
|
|
|
callPackage ./generic.nix (
|
|
args
|
|
// {
|
|
version = "0.3.3";
|
|
sha256 = "0g5df00cj4nczrmr4k791l7la0sq2wnf8rn981fsrz1f3d2yix4i";
|
|
patches = [
|
|
# we would get into a cycle when using fetchpatch on this one
|
|
./drop-comments.patch
|
|
./getenv-signature.patch
|
|
];
|
|
}
|
|
)
|