Added toolbuslib. This is fun

svn path=/nixpkgs/trunk/; revision=705
This commit is contained in:
Martin Bravenboer 2004-01-22 18:46:26 +00:00
parent ffa5434646
commit 3d0e24c639
3 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#! /bin/sh
buildinputs="$aterm $getopt"
. $stdenv/setup || exit 1
tar zxf $src || exit 1
cd toolbuslib-* || exit 1
./configure --prefix=$out --with-aterm=$aterm || exit 1
make install || exit 1

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, aterm}: derivation {
name = "toolbuslib-0.5.1";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://www.cwi.nl/projects/MetaEnv/toolbuslib/toolbuslib-0.5.1.tar.gz;
md5 = "1c7c7cce870f813bef60bbffdf061c90";
};
stdenv = stdenv;
aterm = aterm;
}

View file

@ -248,6 +248,12 @@
getopt = getopt;
};
toolbuslib051 = (import ../development/tools/parsing/toolbuslib/toolbuslib-0.5.1.nix) {
fetchurl = fetchurl;
stdenv = stdenv;
aterm = aterm205;
};
strategoxt = (import ../development/compilers/strategoxt) {
fetchurl = fetchurl;
stdenv = stdenv;