nixpkgs/pkgs/tools/text/patchutils/0.4.2.nix
2024-04-25 09:15:17 +02:00

9 lines
266 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 = [ ./Revert-Fix-grepdiff-test.patch ];
})