mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Added toolbuslib. This is fun
svn path=/nixpkgs/trunk/; revision=705
This commit is contained in:
parent
ffa5434646
commit
3d0e24c639
9
pkgs/development/tools/parsing/toolbuslib/builder.sh
Executable file
9
pkgs/development/tools/parsing/toolbuslib/builder.sh
Executable 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
|
|
@ -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;
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue