nixpkgs/pkgs/tools/text/patchutils/0.4.2.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
266 B
Nix
Raw Normal View History

{ callPackage, python3, ... } @ args:
callPackage ./generic.nix (args // {
version = "0.4.2";
sha256 = "sha256-iHWwll/jPeYriQ9s15O+f6/kGk5VLtv2QfH+1eu/Re0=";
# for gitdiff
extraBuildInputs = [ python3 ];
2024-04-25 07:15:17 +00:00
patches = [ ./Revert-Fix-grepdiff-test.patch ];
})