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:
parent
2a745820ed
commit
39d35a11fd
Binary file not shown.
5
pkgs/stdenv/nix-linux-static/bash-static/builder.sh
Normal file
5
pkgs/stdenv/nix-linux-static/bash-static/builder.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
. $stdenv/setup
|
||||
|
||||
tar zxvf $src
|
||||
mkdir $out
|
||||
cp -a bash-2.05b/* $out
|
7
pkgs/stdenv/nix-linux-static/bash-static/default.nix
Normal file
7
pkgs/stdenv/nix-linux-static/bash-static/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{stdenv}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "bash-static-2.05b";
|
||||
builder = ./builder.sh;
|
||||
src = ./bash-2.05b-static.tar.gz;
|
||||
}
|
Loading…
Reference in a new issue