2010-01-08 21:28:30 +00:00
|
|
|
{ stdenv, fetchurl, ed }:
|
2006-10-24 23:05:12 +00:00
|
|
|
|
2012-09-18 18:48:31 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-01-29 11:32:23 +00:00
|
|
|
name = "patch-2.7.3";
|
2010-01-06 13:50:51 +00:00
|
|
|
|
2012-04-23 15:47:21 +00:00
|
|
|
src = fetchurl {
|
2015-01-29 11:32:23 +00:00
|
|
|
url = "mirror://gnu/patch/${name}.tar.bz2";
|
|
|
|
sha256 = "0za8wh4lgjk8k9s0rd7y5gjid99126myrh3nkifpi4ny6rkj9xh2";
|
2012-04-23 15:47:21 +00:00
|
|
|
};
|
2006-10-24 23:05:12 +00:00
|
|
|
|
2012-09-18 18:48:31 +00:00
|
|
|
buildInputs = stdenv.lib.optional doCheck ed;
|
2010-01-08 21:28:30 +00:00
|
|
|
|
2010-04-04 18:10:42 +00:00
|
|
|
crossAttrs = {
|
|
|
|
configureFlags = [ "ac_cv_func_strnlen_working=yes" ];
|
|
|
|
};
|
|
|
|
|
2013-02-28 18:53:50 +00:00
|
|
|
patches = [ ./bashishms.patch ];
|
|
|
|
|
|
|
|
doCheck = true;
|
2010-01-06 13:50:51 +00: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 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2010-01-06 13:50:51 +00:00
|
|
|
|
2013-08-16 21:44:33 +00:00
|
|
|
maintainers = [ ];
|
2010-01-06 13:50:51 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|