nixpkgs/pkgs/tools/text/gnupatch/default.nix

11 lines
266 B
Nix
Raw Normal View History

{stdenv, fetchurl}: derivation {
name = "gnupatch-2.5.4";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/patch/patch-2.5.4.tar.gz;
md5 = "ee5ae84d115f051d87fcaaef3b4ae782";
};
stdenv = stdenv;
}