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

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

8 lines
259 B
Nix
Raw Normal View History

2019-04-13 21:09:44 +00:00
{ callPackage, ... } @ args:
2019-08-13 21:52:01 +00:00
callPackage ./generic.nix (args // {
2019-04-13 21:09:44 +00:00
version = "0.3.3";
sha256 = "0g5df00cj4nczrmr4k791l7la0sq2wnf8rn981fsrz1f3d2yix4i";
patches = [ ./drop-comments.patch ]; # we would get into a cycle when using fetchpatch on this one
})