1{ stdenv, fetchurl, pkgconfig, strategoPackages }:
2
3stdenv.mkDerivation rec {
4 name = "webdsl-9.7pre4168";
5
6 src = fetchurl {
7 url = "http://hydra.nixos.org/build/654196/download/1/${name}.tar.gz";
8 sha256 = "08bec3ba02254ec7474ce70206b7be4390fe07456cfc57d927d96a21dd6dcb33";
9 };
10
11 buildInputs =
12 [ pkgconfig strategoPackages.aterm strategoPackages.sdf
13 strategoPackages.strategoxt strategoPackages.javafront
14 ];
15
16 # This corrected a failing build on at least one 64 bit Linux system.
17 # See the comment about this here: http://webdsl.org/selectpage/Download/WebDSLOnLinux
18 preBuild = (if stdenv.system == "x86_64-linux" then "ulimit -s unlimited" else "");
19
20 meta = {
21 homepage = http://webdsl.org/;
22 description = "A domain-specific language for developing dynamic web applications with a rich data model";
23 };
24}