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" ];
|
|
|
|
};
|
|
|
|
|
2012-10-16 21:05:39 +02:00
|
|
|
# Tests fail on FreeBSD due to a Bashism in the tests.
|
|
|
|
doCheck = !stdenv.isFreeBSD;
|
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;
|
|
|
|
};
|
|
|
|
}
|