907be69b26
svn path=/nixpkgs/branches/stdenv-updates/; revision=19522
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchurl, ed }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "patch-2.6.1";
|
|
|
|
src =
|
|
if !(stdenv ? glibc)
|
|
then fetchurl {
|
|
# Temporary fix for
|
|
# http://lists.gnu.org/archive/html/bug-patch/2010-01/msg00004.html .
|
|
url = "ftp://alpha.gnu.org/gnu/patch/patch-2.6.1-2-g2c4e3ec.tar.gz";
|
|
sha256 = "1rspyzrik5cnav3m2fxr8146bsq4mc0yw4x0r8nkl2x7i052yr2c";
|
|
} else fetchurl {
|
|
url = "mirror://gnu/patch/${name}.tar.gz";
|
|
sha256 = "1fc1jyq80nswkf492fiqdbl2bhvlw2wb44ghqlfd3zngx4qkfmni";
|
|
};
|
|
|
|
buildInputs = (stdenv.lib.optional doCheck ed);
|
|
|
|
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;
|
|
};
|
|
}
|