mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Latest daily distribution of StrategoXT in Nix
svn path=/nixpkgs/trunk/; revision=1066
This commit is contained in:
parent
8e22f2f58b
commit
6ade14473a
13
pkgs/development/compilers/strategoxt/dailydist.nix
Normal file
13
pkgs/development/compilers/strategoxt/dailydist.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{stdenv, fetchurl, aterm, sdf}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "strategoxt-0.11pre-6529";
|
||||
builder = ./new-builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://losser.st-lab.cs.uu.nl/~mbravenb/dailydist/strategoxt/src/strategoxt-0.11pre-6529.tar.gz;
|
||||
md5 = "e14a548c5b871d1d99e2fcf7dc1c7754";
|
||||
};
|
||||
inherit aterm;
|
||||
inherit (sdf) ptsupport asflibrary pgen sglr;
|
||||
buildInputs = [aterm sdf.ptsupport sdf.sdfsupport sdf.pgen sdf.sglr];
|
||||
}
|
4
pkgs/development/compilers/strategoxt/new-builder.sh
Normal file
4
pkgs/development/compilers/strategoxt/new-builder.sh
Normal file
@ -0,0 +1,4 @@
|
||||
. $stdenv/setup
|
||||
|
||||
configureFlags="--with-aterm=$aterm --with-asf-library=$asflibrary --with-pt-support=$ptsupport --with-pgen=$pgen --with-sglr=$sglr"
|
||||
genericBuild
|
@ -242,6 +242,11 @@ rec {
|
||||
sdf = sdf2_bundle;
|
||||
};
|
||||
|
||||
strategoxtdailydist = (import ../development/compilers/strategoxt/dailydist.nix) {
|
||||
inherit fetchurl stdenv aterm;
|
||||
sdf = sdf_21;
|
||||
};
|
||||
|
||||
tiger = (import ../development/compilers/tiger) {
|
||||
inherit fetchurl stdenv aterm strategoxt;
|
||||
sdf = sdf2_bundle;
|
||||
|
Loading…
Reference in New Issue
Block a user