nixpkgs/pkgs/tools/text/gnupatch/default.nix
Eelco Dolstra 8f26b38d4e Drop Darwin patch in GNU patch
Seems to build fine without it.

http://hydra.nixos.org/build/3053575
2012-09-24 16:53:42 -04:00

36 lines
871 B
Nix

{ stdenv, fetchurl, ed }:
stdenv.mkDerivation rec {
name = "patch-2.7";
src = fetchurl {
url = "mirror://gnu/patch/${name}.tar.gz";
sha256 = "0j10lq37ywcc4qiakan6wpm00abfrnnccq3ags129ad0z9b9zhjr";
};
buildInputs = stdenv.lib.optional doCheck ed;
crossAttrs = {
configureFlags = [ "ac_cv_func_strnlen_working=yes" ];
};
doCheck = true;
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;
};
}