* Upgraded Stratego/XT to Stratego/XT 0.14
* Clean up of SDF attributes in all-package-generic. There is now a single attribute, called sdf. svn path=/nixpkgs/trunk/; revision=3062
This commit is contained in:
4
pkgs/development/compilers/strategoxt/builder-0.14.sh
Normal file
4
pkgs/development/compilers/strategoxt/builder-0.14.sh
Normal file
@@ -0,0 +1,4 @@
|
||||
. $stdenv/setup
|
||||
|
||||
configureFlags="--with-aterm=$aterm --with-sdf=$sdf"
|
||||
genericBuild
|
||||
@@ -1,2 +1,2 @@
|
||||
import ./strategoxt-0.13.nix
|
||||
import ./strategoxt-0.14.nix
|
||||
|
||||
|
||||
15
pkgs/development/compilers/strategoxt/strategoxt-0.14.nix
Normal file
15
pkgs/development/compilers/strategoxt/strategoxt-0.14.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{stdenv, fetchurl, aterm, sdf, pkgconfig}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
||||
name = "strategoxt-0.14";
|
||||
builder = ./builder-0.14.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.stratego-language.org/pub/stratego/StrategoXT/strategoxt-0.14/strategoxt-0.14.tar.gz;
|
||||
md5 = "143f01cc27231ccd5eddb695a7b79c69";
|
||||
};
|
||||
|
||||
inherit aterm sdf;
|
||||
buildInputs = [pkgconfig aterm sdf];
|
||||
}
|
||||
Reference in New Issue
Block a user