core/pkgs/by-name/pa/patchutils/0.4.2.nix

13 lines
282 B
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{ callPackage, python3, ... }@args:
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
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 ];
}
)