nixpkgs/pkgs/tools/text/gnupatch/default.nix

39 lines
956 B
Nix
Raw Normal View History

2017-06-03 16:27:33 +01:00
{ stdenv, fetchurl
, ed
, buildPlatform, hostPlatform
}:
2012-09-18 19:48:31 +01:00
stdenv.mkDerivation rec {
2015-03-26 05:43:04 +00:00
name = "patch-2.7.5";
src = fetchurl {
2015-03-26 05:43:04 +00:00
url = "mirror://gnu/patch/${name}.tar.xz";
sha256 = "16d2r9kpivaak948mxzc0bai45mqfw73m113wrkmbffnalv1b5gx";
};
2012-09-18 19:48:31 +01:00
buildInputs = stdenv.lib.optional doCheck ed;
configureFlags = stdenv.lib.optionals (hostPlatform != buildPlatform) [
2017-06-03 16:27:33 +01:00
"ac_cv_func_strnlen_working=yes"
];
2017-06-03 16:27:33 +01:00
doCheck = hostPlatform == buildPlatform;
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 = stdenv.lib.licenses.gpl3Plus;
2013-08-16 22:44:33 +01:00
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
};
}