2010-01-08 22:28:30 +01:00
|
|
|
{ stdenv, fetchurl, ed }:
|
2006-10-25 01:05:12 +02:00
|
|
|
|
2010-01-06 14:50:51 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "patch-2.6.1";
|
|
|
|
|
2004-02-13 15:42:28 +01:00
|
|
|
src = fetchurl {
|
2010-01-06 14:50:51 +01:00
|
|
|
url = "mirror://gnu/patch/${name}.tar.gz";
|
|
|
|
sha256 = "1fc1jyq80nswkf492fiqdbl2bhvlw2wb44ghqlfd3zngx4qkfmni";
|
2004-02-13 15:42:28 +01:00
|
|
|
};
|
2006-10-25 01:05:12 +02:00
|
|
|
|
2010-01-08 22:28:30 +01:00
|
|
|
buildInputs = (stdenv.lib.optional doCheck ed);
|
|
|
|
|
|
|
|
doCheck = true;
|
2010-01-06 14:50:51 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU Patch, a program to apply differences to files";
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' GNU Patch takes a patch file containing a difference listing
|
|
|
|
produced by the diff program and applies those differences to one or
|
|
|
|
more original files, producing patched versions.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://savannah.gnu.org/projects/patch;
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|