2010-09-30 12:49:02 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, strategoPackages }:
|
2008-01-29 12:46:34 +01:00
|
|
|
|
2009-03-19 17:04:32 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-09-30 12:49:02 +02:00
|
|
|
name = "webdsl-9.7pre4168";
|
2008-01-29 12:46:34 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-09-30 12:49:02 +02:00
|
|
|
url = "http://hydra.nixos.org/build/654196/download/1/${name}.tar.gz";
|
|
|
|
sha256 = "08bec3ba02254ec7474ce70206b7be4390fe07456cfc57d927d96a21dd6dcb33";
|
2008-01-29 12:46:34 +01:00
|
|
|
};
|
|
|
|
|
2010-09-30 12:49:02 +02:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig strategoPackages.aterm strategoPackages.sdf
|
|
|
|
strategoPackages.strategoxt strategoPackages.javafront
|
|
|
|
];
|
2009-03-19 17:04:32 +01:00
|
|
|
|
2011-04-08 08:20:34 +02:00
|
|
|
# This corrected a failing build on at least one 64 bit Linux system.
|
|
|
|
# See the comment about this here: http://webdsl.org/selectpage/Download/WebDSLOnLinux
|
|
|
|
preBuild = (if stdenv.system == "x86_64-linux" then "ulimit -s unlimited" else "");
|
|
|
|
|
2009-03-19 17:04:32 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://webdsl.org/;
|
|
|
|
description = "A domain-specific language for developing dynamic web applications with a rich data model";
|
|
|
|
};
|
2008-01-29 12:46:34 +01:00
|
|
|
}
|