mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-01 14:28:20 +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.
13 lines
222 B
Nix
13 lines
222 B
Nix
{ callPackage, ... }@args:
|
|
|
|
callPackage ./generic.nix (
|
|
args
|
|
// {
|
|
version = "0.3.4";
|
|
sha256 = "0xp8mcfyi5nmb5a2zi5ibmyshxkb1zv1dgmnyn413m7ahgdx8mfg";
|
|
patches = [
|
|
./getenv-signature.patch
|
|
];
|
|
}
|
|
)
|