* Converting packages. This is the minimal Nix stdenv for building

the ATerm library.

svn path=/nixpkgs/trunk/; revision=459
This commit is contained in:
Eelco Dolstra
2003-11-02 17:42:19 +00:00
parent 30f2bf8a85
commit 1894a8b86c
42 changed files with 667 additions and 22 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
+10
View File
@@ -0,0 +1,10 @@
{stdenv, fetchurl}: derivation
{ name = "bash-2.05b"
, system = stdenv.system
, builder = ./builder.sh
, src = fetchurl
{ url = ftp://ftp.nluug.nl/pub/gnu/bash/bash-2.05b.tar.gz
, md5 = "5238251b4926d778dfe162f6ce729733"
}
, stdenv = stdenv
}