Added WebDSL
svn path=/nixpkgs/branches/stdenv-updates/; revision=10386
This commit is contained in:
parent
e22cd8245e
commit
c1a512f2a1
8
pkgs/development/compilers/webdsl/builder.sh
Normal file
8
pkgs/development/compilers/webdsl/builder.sh
Normal file
@ -0,0 +1,8 @@
|
||||
source $stdenv/setup
|
||||
|
||||
configureFlags="--with-aterm=$aterm --with-sdf=$sdf --with-strategoxt=$strategoxt"
|
||||
genericBuild
|
||||
|
||||
# Replace /bin/bash in WebDSL script (maybe there is a better solution?)
|
||||
|
||||
sed -i -e "s|#!/bin/bash|#!/bin/sh|" $out/bin/webdsl
|
14
pkgs/development/compilers/webdsl/default.nix
Normal file
14
pkgs/development/compilers/webdsl/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{stdenv, fetchurl, aterm, sdf, strategoxt, pkgconfig, javafront}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "webdsl-7.12pre876";
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://buildfarm.st.ewi.tudelft.nl/releases/strategoxt/webdsl-7.12pre876-g60njq3p/webdsl-7.12pre876.tar.gz;
|
||||
md5 = "7cd8709b02e03da74d90f8f8388e8d01";
|
||||
};
|
||||
|
||||
inherit aterm sdf strategoxt javafront;
|
||||
buildInputs = [pkgconfig aterm sdf strategoxt javafront];
|
||||
}
|
@ -1291,6 +1291,13 @@ rec {
|
||||
inherit fetchurl stdenv cabextract;
|
||||
};
|
||||
|
||||
webdsl = import ../development/compilers/webdsl {
|
||||
inherit stdenv fetchurl pkgconfig javafront;
|
||||
aterm = aterm25;
|
||||
sdf = sdf24;
|
||||
strategoxt = strategoxt017;
|
||||
};
|
||||
|
||||
win32hello = import ../development/compilers/visual-c++/test {
|
||||
inherit fetchurl stdenv visualcpp windowssdk;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user