2017-06-03 15:27:33 +00:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, ed
|
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
}:
|
2006-10-24 23:05:12 +00:00
|
|
|
|
2012-09-18 18:48:31 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-02-07 17:02:41 +00:00
|
|
|
name = "patch-2.7.6";
|
2010-01-06 13:50:51 +00:00
|
|
|
|
2012-04-23 15:47:21 +00:00
|
|
|
src = fetchurl {
|
2015-03-26 05:43:04 +00:00
|
|
|
url = "mirror://gnu/patch/${name}.tar.xz";
|
2018-02-07 17:02:41 +00:00
|
|
|
sha256 = "1zfqy4rdcy279vwn2z1kbv19dcfw25d2aqy9nzvdkq5bjzd0nqdc";
|
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
|
|
|
|
2017-06-23 21:45:27 +00:00
|
|
|
configureFlags = stdenv.lib.optionals (hostPlatform != buildPlatform) [
|
2017-06-03 15:27:33 +00:00
|
|
|
"ac_cv_func_strnlen_working=yes"
|
|
|
|
];
|
2010-04-04 18:10:42 +00:00
|
|
|
|
2018-01-12 08:02:32 +00:00
|
|
|
doCheck = hostPlatform.libc != "musl"; # not cross;
|
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;
|
|
|
|
};
|
|
|
|
}
|