mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Added strategoxt-0.12
svn path=/nixpkgs/trunk/; revision=1807
This commit is contained in:
parent
c35db17230
commit
eeb83adeba
2 changed files with 19 additions and 1 deletions
|
@ -1,2 +1,2 @@
|
|||
import ./strategoxt-0.11.nix
|
||||
import ./strategoxt-0.12.nix
|
||||
|
||||
|
|
18
pkgs/development/compilers/strategoxt/strategoxt-0.12.nix
Normal file
18
pkgs/development/compilers/strategoxt/strategoxt-0.12.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{stdenv, fetchurl, aterm, sdf}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
||||
name = "strategoxt-0.12";
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.12.tar.gz;
|
||||
md5 = "bc2b14d9b53a07fc0047c16f2c6edf0c";
|
||||
};
|
||||
|
||||
inherit aterm;
|
||||
inherit (sdf) sglr pgen ptsupport asflibrary;
|
||||
|
||||
buildInputs = [aterm sdf.pgen];
|
||||
}
|
Loading…
Reference in a new issue