Added pt-support 1.0
svn path=/nixpkgs/trunk/; revision=706
This commit is contained in:
parent
3d0e24c639
commit
362cba8ada
9
pkgs/development/tools/parsing/pt-support/builder.sh
Executable file
9
pkgs/development/tools/parsing/pt-support/builder.sh
Executable file
@ -0,0 +1,9 @@
|
||||
#! /bin/sh
|
||||
|
||||
buildinputs="$aterm $getopt $toolbuslib"
|
||||
. $stdenv/setup || exit 1
|
||||
|
||||
tar zxf $src || exit 1
|
||||
cd pt-support-* || exit 1
|
||||
./configure --prefix=$out --with-aterm=$aterm --with-toolbuslib=$toolbuslib || exit 1
|
||||
make install || exit 1
|
12
pkgs/development/tools/parsing/pt-support/pt-support-1.0.nix
Normal file
12
pkgs/development/tools/parsing/pt-support/pt-support-1.0.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{stdenv, fetchurl, aterm, toolbuslib}: derivation {
|
||||
name = "pt-support-1.0";
|
||||
system = stdenv.system;
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://www.cwi.nl/projects/MetaEnv/pt-support/pt-support-1.0.tar.gz;
|
||||
md5 = "cc96dc2bfbaf3f218dfe9a0b8bb4d801";
|
||||
};
|
||||
stdenv = stdenv;
|
||||
aterm = aterm;
|
||||
toolbuslib = toolbuslib;
|
||||
}
|
@ -236,7 +236,7 @@
|
||||
stdenv = stdenv;
|
||||
};
|
||||
|
||||
aterm205 = (import ../development/libraries/aterm/aterm-2.0.5.nix) {
|
||||
aterm_2_0_5 = (import ../development/libraries/aterm/aterm-2.0.5.nix) {
|
||||
fetchurl = fetchurl;
|
||||
stdenv = stdenv;
|
||||
};
|
||||
@ -248,10 +248,17 @@
|
||||
getopt = getopt;
|
||||
};
|
||||
|
||||
toolbuslib051 = (import ../development/tools/parsing/toolbuslib/toolbuslib-0.5.1.nix) {
|
||||
toolbuslib_0_5_1 = (import ../development/tools/parsing/toolbuslib/toolbuslib-0.5.1.nix) {
|
||||
fetchurl = fetchurl;
|
||||
stdenv = stdenv;
|
||||
aterm = aterm205;
|
||||
aterm = aterm_2_0_5;
|
||||
};
|
||||
|
||||
pt_support_1_0 = (import ../development/tools/parsing/pt-support/pt-support-1.0.nix) {
|
||||
fetchurl = fetchurl;
|
||||
stdenv = stdenv;
|
||||
aterm = aterm_2_0_5;
|
||||
toolbuslib = toolbuslib_0_5_1;
|
||||
};
|
||||
|
||||
strategoxt = (import ../development/compilers/strategoxt) {
|
||||
|
Loading…
Reference in New Issue
Block a user