nixpkgs/pkgs/tools/text/gnused/default.nix
Eelco Dolstra 4d3059721d * bash 2.0, findutils 4.2.28.
* Some Nix expression simplifications.  Sense and simplicity!

svn path=/nixpkgs/trunk/; revision=6836
2006-10-24 23:05:12 +00:00

12 lines
289 B
Nix

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