e2fsprogs-diet

svn path=/nixpkgs/trunk/; revision=3732
This commit is contained in:
Armijn Hemel 2005-08-28 00:20:16 +00:00
parent 8d91e10664
commit 9bc5482790
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,7 @@
. $stdenv/setup
export NIX_GLIBC_FLAGS_SET=1
installPhase() {
make install
cd lib/uuid; make install

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, gettext}:
{stdenv, fetchurl, gettext, dietgcc}:
stdenv.mkDerivation {
name = "e2fsprogs-1.36";
@ -7,6 +7,7 @@ stdenv.mkDerivation {
url = http://nix.cs.uu.nl/dist/tarballs/e2fsprogs-1.36.tar.gz;
md5 = "1804ee96b76e5e7113fe3cecd6fe582b";
};
configureFlags = "--enable-dynamic-e2fsck --enable-elf-shlibs";
#configureFlags = "--with-diet-libc";
buildInputs = [gettext];
NIX_GCC = dietgcc;
}