mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
stratego shell
svn path=/nixpkgs/trunk/; revision=18677
This commit is contained in:
parent
af0a961e3d
commit
98f9ab70c0
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, aterm, pkgconfig, getopt, jdk}:
|
||||
{stdenv, fetchurl, aterm, pkgconfig, getopt, jdk, readline}:
|
||||
|
||||
rec {
|
||||
|
||||
|
@ -43,6 +43,22 @@ rec {
|
|||
};
|
||||
};
|
||||
|
||||
strategoShell = stdenv.mkDerivation rec {
|
||||
name = "stratego-shell-0.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.strategoxt.org/pub/stratego/StrategoXT/strategoxt-0.17/stratego-shell-0.17.tar.gz";
|
||||
sha256 = "0q21vks9gaw9v4rxz90wb0pxzb19l7gwi4nbjvk4zb1imdk7znck";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig aterm sdf strategoxt getopt];
|
||||
|
||||
meta = {
|
||||
homepage = http://strategoxt.org/;
|
||||
meta = "A language and toolset for program transformation";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
javafront = stdenv.mkDerivation (rec {
|
||||
name = "java-front-0.9";
|
||||
|
|
|
@ -2123,6 +2123,7 @@ let
|
|||
|
||||
strategoPackages017 = import ../development/compilers/strategoxt/0.17.nix {
|
||||
inherit fetchurl stdenv pkgconfig aterm getopt jdk;
|
||||
readline = readline5;
|
||||
};
|
||||
|
||||
strategoPackages018 = import ../development/compilers/strategoxt/0.18.nix {
|
||||
|
|
Loading…
Reference in a new issue