summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMatthew Daiter <matthew@nomoko.camera>2016-11-21 18:23:15 +0100
committerMatthew Daiter <matthew@nomoko.camera>2016-11-21 18:23:15 +0100
commit89ca3425b071ce7ae1404e91a6175d7eafbfb795 (patch)
tree4db8bb7f7a741f7f5f9a11ffd7b8025217b9ad4e /pkgs/development
parentbaa73cd6e03b5586dbe39a66c613a714011e88c0 (diff)
downloadnixpkgs-89ca3425b071ce7ae1404e91a6175d7eafbfb795.tar
nixpkgs-89ca3425b071ce7ae1404e91a6175d7eafbfb795.tar.gz
nixpkgs-89ca3425b071ce7ae1404e91a6175d7eafbfb795.tar.bz2
nixpkgs-89ca3425b071ce7ae1404e91a6175d7eafbfb795.tar.lz
nixpkgs-89ca3425b071ce7ae1404e91a6175d7eafbfb795.tar.xz
nixpkgs-89ca3425b071ce7ae1404e91a6175d7eafbfb795.tar.zst
nixpkgs-89ca3425b071ce7ae1404e91a6175d7eafbfb795.zip
erlang19: enable dirty schedulers
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/interpreters/erlang/R19.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/erlang/R19.nix b/pkgs/development/interpreters/erlang/R19.nix
index 02a84580850..824c6868880 100644
--- a/pkgs/development/interpreters/erlang/R19.nix
+++ b/pkgs/development/interpreters/erlang/R19.nix
@@ -6,6 +6,7 @@
 , javacSupport ? false, openjdk ? null
 , enableHipe ? true
 , enableDebugInfo ? false
+, enableDirtySchedulers ? false
 }:
 
 assert wxSupport -> (if stdenv.isDarwin
@@ -49,6 +50,7 @@ stdenv.mkDerivation rec {
   configureFlags= [
     "--with-ssl=${openssl.dev}"
   ] ++ optional enableHipe "--enable-hipe"
+    ++ optional enableDirtySchedulers "--enable-dirty-schedulers"
     ++ optional wxSupport "--enable-wx"
     ++ optional odbcSupport "--with-odbc=${unixODBC}"
     ++ optional javacSupport "--with-javac"