This is what happens when you do a normal "cp -a" instead of a "svn cp". Argh. Can somebody please bring out the LART?

svn path=/nixpkgs/trunk/; revision=3733
This commit is contained in:
Armijn Hemel 2005-08-28 00:30:53 +00:00
parent 9bc5482790
commit eefd0d1745
4 changed files with 27 additions and 5 deletions

View file

@ -0,0 +1,12 @@
. $stdenv/setup
export NIX_GLIBC_FLAGS_SET=1
installPhase() {
make install
cd lib/uuid; make install
}
installPhase=installPhase
genericBuild

View file

@ -0,0 +1,13 @@
{stdenv, fetchurl, gettext, dietgcc}:
stdenv.mkDerivation {
name = "e2fsprogs-1.36";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/e2fsprogs-1.36.tar.gz;
md5 = "1804ee96b76e5e7113fe3cecd6fe582b";
};
#configureFlags = "--with-diet-libc";
buildInputs = [gettext];
NIX_GCC = dietgcc;
}

View file

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