about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorKosyrev Serge <serge.kosyrev@iohk.io>2018-03-07 00:46:02 +0300
committerKosyrev Serge <serge.kosyrev@iohk.io>2018-03-08 04:18:09 +0300
commit0145a00d9c34c56e37654a9df228cf2b63f6c326 (patch)
treea2222af03b136382c0376137458c3105ec9ebf97 /pkgs/development/compilers/ghc
parent6be7d949149e5bbd0bce1858c5d9a5ce1aee1177 (diff)
downloadnixlib-0145a00d9c34c56e37654a9df228cf2b63f6c326.tar
nixlib-0145a00d9c34c56e37654a9df228cf2b63f6c326.tar.gz
nixlib-0145a00d9c34c56e37654a9df228cf2b63f6c326.tar.bz2
nixlib-0145a00d9c34c56e37654a9df228cf2b63f6c326.tar.lz
nixlib-0145a00d9c34c56e37654a9df228cf2b63f6c326.tar.xz
nixlib-0145a00d9c34c56e37654a9df228cf2b63f6c326.tar.zst
nixlib-0145a00d9c34c56e37654a9df228cf2b63f6c326.zip
ghc841: fix for the bump-broken integer-gmp: m4 is now a dependency
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/8.4.1.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ghc/8.4.1.nix b/pkgs/development/compilers/ghc/8.4.1.nix
index d60060000fa4..dd0e5e4b0572 100644
--- a/pkgs/development/compilers/ghc/8.4.1.nix
+++ b/pkgs/development/compilers/ghc/8.4.1.nix
@@ -15,7 +15,7 @@
 
 , # If enabled, GHC will be built with the GPL-free but slower integer-simple
   # library instead of the faster but GPLed integer-gmp library.
-  enableIntegerSimple ? false, gmp ? null
+  enableIntegerSimple ? false, gmp ? null, m4
 
 , # If enabled, use -fPIC when compiling static libs.
   enableRelocatedStaticLibs ? targetPlatform != hostPlatform
@@ -149,7 +149,7 @@ stdenv.mkDerivation rec {
   # masss-rebuild.
   crossConfig = true;
 
-  nativeBuildInputs = [ ghc perl autoconf automake happy alex python3 ];
+  nativeBuildInputs = [ ghc perl autoconf automake m4 happy alex python3 ];
 
   # For building runtime libs
   depsBuildTarget = toolsForTarget;