add a statically linked copy of GNU tar

svn path=/nixpkgs/trunk/; revision=1546
This commit is contained in:
Armijn Hemel 2004-10-07 14:02:18 +00:00
parent 6c0032f7d4
commit d68128380b
3 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,5 @@
. $stdenv/setup
tar zxvf $src
mkdir $out
cp -a tar-1.13.25/* $out

View File

@ -0,0 +1,7 @@
{stdenv}:
stdenv.mkDerivation {
name = "gnutar-static-1.13.25";
builder = ./builder.sh;
src = ./tar-1.13.25-static.tar.gz;
}