about summary refs log tree commit diff
path: root/pkgs/tools/text/gnupatch/default.nix
blob: e5e02730e6d6e46108f15ad9e7b4663d170b9f60 (plain) (blame)
1
2
3
4
5
6
7
8
{stdenv, fetchurl}: stdenv.mkDerivation {
  name = "gnupatch-2.5.4";
  builder = ./builder.sh;
  src = fetchurl {
    url = ftp://ftp.nluug.nl/pub/gnu/patch/patch-2.5.4.tar.gz;
    md5 = "ee5ae84d115f051d87fcaaef3b4ae782";
  };
}