Author: kkallio Date: Fri Apr 8 06:20:34 2011 New Revision: 26747 URL: https://svn.nixos.org/websvn/nix/?rev=26747&sc=1
Log: Change which corrected a failing build of webdsl on a 64 bit Linux. Based on this comment: http://webdsl.org/selectpage/Download/WebDSLOnLinux Modified: nixpkgs/trunk/pkgs/development/compilers/webdsl/default.nix Modified: nixpkgs/trunk/pkgs/development/compilers/webdsl/default.nix ============================================================================== --- nixpkgs/trunk/pkgs/development/compilers/webdsl/default.nix Thu Apr 7 22:24:56 2011 (r26746) +++ nixpkgs/trunk/pkgs/development/compilers/webdsl/default.nix Fri Apr 8 06:20:34 2011 (r26747) @@ -13,6 +13,10 @@ 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"; _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
