* Added bash.

* Separated stdenv.fix and stdenv-nativetools.fix.

svn path=/nixpkgs/trunk/; revision=324
This commit is contained in:
Eelco Dolstra
2003-08-19 10:40:54 +00:00
parent 6ad771156c
commit 0dc6fd3204
8 changed files with 96 additions and 52 deletions
+10
View File
@@ -0,0 +1,10 @@
#! /bin/sh
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd bash-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
(cd $out/bin; ln -s bash sh) || exit 1
+13
View File
@@ -0,0 +1,13 @@
Package(
[ ("name", "bash-2.05b")
, ("build", Relative("bash/bash-build.sh"))
, ("src", Call(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "ftp://ftp.nluug.nl/pub/gnu/bash/bash-2.05b.tar.gz")
, ("md5", "5238251b4926d778dfe162f6ce729733")
]))
, ("stdenv", IncludeFix("stdenv-linux/stdenv-nativetools.fix"))
]
)