1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00

* Doh! Idem.

svn path=/nixpkgs/trunk/; revision=5704
This commit is contained in:
Eelco Dolstra 2006-07-14 10:59:14 +00:00
parent f9a32684d2
commit ea2da73c8d

View file

@ -1,9 +1,11 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
stdenv.mkDerivation ({
name = "gnused-4.1.5";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/sed/sed-4.1.5.tar.gz;
md5 = "7a1cbbbb3341287308e140bd4834c3ba";
};
}
} //
# !!! hack: this should go away in gnused > 4.1.5
(if stdenv.system != "i686-linux" then {patches = [./gettext-fix.patch];} else {}))