3
0
Fork 0
forked from mirrors/nixpkgs

add another package for bootstrapping. Only bzip2 and gzip are still missing...

svn path=/nixpkgs/trunk/; revision=1548
This commit is contained in:
Armijn Hemel 2004-10-07 15:44:12 +00:00
parent 2a745820ed
commit 39d35a11fd
3 changed files with 12 additions and 0 deletions

View file

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

View file

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