1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

Added Stratego/XT 0.17 prerelease

svn path=/nixpkgs/branches/stdenv-updates/; revision=10383
This commit is contained in:
Yury G. Kudryashov 2008-01-29 13:17:25 +00:00
parent 1ec43cc340
commit 8b871ad339
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{stdenv, fetchurl, aterm, sdf, pkgconfig}:
stdenv.mkDerivation {
name = "strategoxt-0.17";
builder = ./builder.sh;
src = fetchurl {
url = http://buildfarm.st.ewi.tudelft.nl/releases/strategoxt/strategoxt-0.17M3pre17099/strategoxt-0.17M3pre17099.tar.gz;
md5 = "fc9bc3cb6d80bfa6ee1fadd2dd828c72";
};
inherit aterm sdf;
buildInputs = [pkgconfig aterm sdf];
}

View file

@ -1252,6 +1252,13 @@ rec {
stdenv = overrideInStdenv stdenv [gnumake380];
};
strategoxt017 = import ../development/compilers/strategoxt/strategoxt-0.17.nix {
inherit fetchurl pkgconfig;
sdf = sdf24;
aterm = aterm25;
stdenv = overrideInStdenv stdenv [gnumake380];
};
strategoxtUtils = import ../development/compilers/strategoxt/utils {
inherit fetchurl pkgconfig stdenv aterm sdf strategoxt;
};