nixpkgs/pkgs/tools/text/gnused/default.nix
Eelco Dolstra 544cb9cb83 * Rewrite all URLs to GNU mirrors to mirror://gnu/.
svn path=/nixpkgs/trunk/; revision=9201
2007-08-27 13:42:00 +00:00

12 lines
272 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "gnused-4.1.5";
src = fetchurl {
url = mirror://gnu/sed/sed-4.1.5.tar.gz;
md5 = "7a1cbbbb3341287308e140bd4834c3ba";
};
# !!! hack: this should go away in gnused > 4.1.5
patches = [./gettext-fix.patch];
}