nixpkgs/pkgs/tools/text/gnused-diet/default.nix

13 lines
295 B
Nix
Raw Normal View History

{stdenv, fetchurl, dietgcc}:
stdenv.mkDerivation {
name = "gnused-4.1.4";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/sed-4.1.4.tar.gz;
md5 = "2a62ceadcb571d2dac006f81df5ddb48";
};
NIX_GCC=dietgcc;
NIX_GLIBC_FLAGS_SET=1;
NIX_CFLAGS_COMPILE="-D_BSD_SOURCE=1";
}