summaryrefslogtreecommitdiff
path: root/pkgs/tools/text/patchutils/0.3.3.nix
blob: 2efd44fc787a95a0bae914be0db91376f9e0ec99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ callPackage, ... }@args:

callPackage ./generic.nix (
  args
  // {
    version = "0.3.3";
    sha256 = "0g5df00cj4nczrmr4k791l7la0sq2wnf8rn981fsrz1f3d2yix4i";
    patches = [
      # we would get into a cycle when using fetchpatch on this one
      ./drop-comments.patch
      ./getenv-signature.patch
    ];
  }
)