mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Added sglr
svn path=/nixpkgs/trunk/; revision=707
This commit is contained in:
parent
362cba8ada
commit
4c14c369fe
@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
buildinputs="$aterm $getopt $toolbuslib"
|
buildinputs="$aterm $toolbuslib"
|
||||||
. $stdenv/setup || exit 1
|
. $stdenv/setup || exit 1
|
||||||
|
|
||||||
tar zxf $src || exit 1
|
tar zxf $src || exit 1
|
||||||
|
9
pkgs/development/tools/parsing/sglr/builder.sh
Executable file
9
pkgs/development/tools/parsing/sglr/builder.sh
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
buildinputs="$aterm $ptsupport $toolbuslib"
|
||||||
|
. $stdenv/setup || exit 1
|
||||||
|
|
||||||
|
tar zxf $src || exit 1
|
||||||
|
cd sglr-* || exit 1
|
||||||
|
./configure --prefix=$out --with-aterm=$aterm --with-toolbuslib=$toolbuslib --with-pt-support=$ptsupport || exit 1
|
||||||
|
make install || exit 1
|
13
pkgs/development/tools/parsing/sglr/sglr-3.10.2.nix
Normal file
13
pkgs/development/tools/parsing/sglr/sglr-3.10.2.nix
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{stdenv, fetchurl, aterm, toolbuslib, ptsupport}: derivation {
|
||||||
|
name = "sglr-3.10.2";
|
||||||
|
system = stdenv.system;
|
||||||
|
builder = ./builder.sh;
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://www.cwi.nl/projects/MetaEnv/sglr/sglr-3.10.2.tar.gz;
|
||||||
|
md5 = "39aa609be84115d7ddc56a6c74b792b7";
|
||||||
|
};
|
||||||
|
stdenv = stdenv;
|
||||||
|
aterm = aterm;
|
||||||
|
ptsupport = ptsupport;
|
||||||
|
toolbuslib = toolbuslib;
|
||||||
|
}
|
@ -1,6 +1,6 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
buildinputs="$aterm $getopt"
|
buildinputs="$aterm"
|
||||||
. $stdenv/setup || exit 1
|
. $stdenv/setup || exit 1
|
||||||
|
|
||||||
tar zxf $src || exit 1
|
tar zxf $src || exit 1
|
||||||
|
@ -261,6 +261,14 @@
|
|||||||
toolbuslib = toolbuslib_0_5_1;
|
toolbuslib = toolbuslib_0_5_1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
sglr_3_10_2 = (import ../development/tools/parsing/sglr/sglr-3.10.2.nix) {
|
||||||
|
fetchurl = fetchurl;
|
||||||
|
stdenv = stdenv;
|
||||||
|
aterm = aterm_2_0_5;
|
||||||
|
toolbuslib = toolbuslib_0_5_1;
|
||||||
|
ptsupport = pt_support_1_0;
|
||||||
|
};
|
||||||
|
|
||||||
strategoxt = (import ../development/compilers/strategoxt) {
|
strategoxt = (import ../development/compilers/strategoxt) {
|
||||||
fetchurl = fetchurl;
|
fetchurl = fetchurl;
|
||||||
stdenv = stdenv;
|
stdenv = stdenv;
|
||||||
|
Loading…
Reference in New Issue
Block a user