Change which corrected a failing build of webdsl on a 64 bit Linux.

Based on this comment: http://webdsl.org/selectpage/Download/WebDSLOnLinux

svn path=/nixpkgs/trunk/; revision=26747
This commit is contained in:
Karn Kallio 2011-04-08 06:20:34 +00:00
parent 30c1dd27c8
commit cd86629a8a

View File

@ -13,6 +13,10 @@ stdenv.mkDerivation rec {
strategoPackages.strategoxt strategoPackages.javafront
];
# 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 "");
meta = {
homepage = http://webdsl.org/;
description = "A domain-specific language for developing dynamic web applications with a rich data model";