* Of course, the latest GNU tar has the same gnulib header file shit

as coreutils.

svn path=/nixpkgs/trunk/; revision=6880
This commit is contained in:
Eelco Dolstra 2006-10-27 20:14:19 +00:00
parent 3ea7d9d272
commit de25bee83d
3 changed files with 14 additions and 2 deletions

View File

@ -63,4 +63,4 @@ let
allowedReferences = [];
};
in generator
in generator.gnutar

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "gnutar-1.15.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/tar-1.15.1.tar.bz2;
md5 = "57da3c38f8e06589699548a34d5a5d07";
};
}

View File

@ -314,7 +314,10 @@ rec {
};
gnutar = useFromStdenv (stdenv ? gnutar) stdenv.gnutar
(import ../tools/archivers/gnutar {
((if stdenv ? isDietLibC
then import ../tools/archivers/gnutar/1.15.1.nix
else import ../tools/archivers/gnutar)
{
inherit fetchurl stdenv;
});