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:
parent
30c1dd27c8
commit
cd86629a8a
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user