patchutils: generalize package

This commit is contained in:
Bob van der Linden
2019-04-13 23:11:07 +02:00
parent 77dcb9e619
commit c8afc263df
3 changed files with 18 additions and 8 deletions
+7
View File
@@ -0,0 +1,7 @@
{ callPackage, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "0.3.3";
sha256 = "0g5df00cj4nczrmr4k791l7la0sq2wnf8rn981fsrz1f3d2yix4i";
patches = [ ./drop-comments.patch ]; # we would get into a cycle when using fetchpatch on this one
})