2010-01-08 22:28:30 +01:00
|
|
|
{ stdenv, fetchurl, ed }:
|
2006-10-25 01:05:12 +02:00
|
|
|
|
2012-09-18 20:48:31 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-10-16 21:05:39 +02:00
|
|
|
name = "patch-2.7.1";
|
2010-01-06 14:50:51 +01:00
|
|
|
|
2012-04-23 17:47:21 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/patch/${name}.tar.gz";
|
2012-10-16 21:05:39 +02:00
|
|
|
sha256 = "1m9r83b5c154xnxbvgjg4lfff58xjapanj6dmmivqx1liik2hpy0";
|
2012-04-23 17:47:21 +02:00
|
|
|
};
|
2006-10-25 01:05:12 +02:00
|
|
|
|
2012-09-18 20:48:31 +02:00
|
|
|
buildInputs = stdenv.lib.optional doCheck ed;
|
2010-01-08 22:28:30 +01:00
|
|
|
|
2010-04-04 20:10:42 +02:00
|
|
|
crossAttrs = {
|
|
|
|
configureFlags = [ "ac_cv_func_strnlen_working=yes" ];
|
|
|
|
};
|
|
|
|
|
2013-02-28 19:53:50 +01:00
|
|
|
patches = [ ./bashishms.patch ];
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-01-06 14:50:51 +01:00
|
|
|
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2010-01-06 14:50:51 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|