summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo M. Correia <rcorreia@wizy.org>2013-12-29 20:15:01 +0100
committerRicardo M. Correia <rcorreia@wizy.org>2014-05-15 13:25:48 +0200
commit2ef09b10b4f976ae09ad4db77f7af9c3912f9ea0 (patch)
tree3e4998081f79267a1f4ccd0355c0ef2be975df0b
parent601bd3e6e5fccbc198ee02aa36aaeada0642bd20 (diff)
downloadnixlib-2ef09b10b4f976ae09ad4db77f7af9c3912f9ea0.tar
nixlib-2ef09b10b4f976ae09ad4db77f7af9c3912f9ea0.tar.gz
nixlib-2ef09b10b4f976ae09ad4db77f7af9c3912f9ea0.tar.bz2
nixlib-2ef09b10b4f976ae09ad4db77f7af9c3912f9ea0.tar.lz
nixlib-2ef09b10b4f976ae09ad4db77f7af9c3912f9ea0.tar.xz
nixlib-2ef09b10b4f976ae09ad4db77f7af9c3912f9ea0.tar.zst
nixlib-2ef09b10b4f976ae09ad4db77f7af9c3912f9ea0.zip
spidermonkey: Add support for grsecurity
-rw-r--r--pkgs/development/interpreters/spidermonkey/185-1.0.0.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix
index d4af39ea16bd..6fc4bcb9dea8 100644
--- a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix
+++ b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix
@@ -28,7 +28,13 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   doCheck = true;
-  preCheck = "rm jit-test/tests/sunspider/check-date-format-tofte.js"; # https://bugzil.la/600522
+
+  preCheck = ''
+    rm jit-test/tests/sunspider/check-date-format-tofte.js    # https://bugzil.la/600522
+
+    paxmark mr shell/js
+    paxmark mr jsapi-tests/jsapi-tests
+  '';
 
   meta = with stdenv.lib; {
     description = "Mozilla's JavaScript engine written in C/C++";