also add bzip2 for unpacking those binaries

svn path=/nixpkgs/trunk/; revision=1551
This commit is contained in:
Armijn Hemel 2004-10-12 13:14:42 +00:00
parent 39d35a11fd
commit 58bbec4a6e
3 changed files with 12 additions and 0 deletions

View File

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

View File

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