about summary refs log tree commit diff
path: root/pkgs/development/compilers/mono
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2020-07-06 11:00:00 +0200
committerVladimír Čunát <v@cunat.cz>2020-07-06 11:10:36 +0200
commitbb9f138f00f4b77218e50ecf905074c238c2b4f2 (patch)
tree0bfa1026eef882372df884bcf8cfac893eaff726 /pkgs/development/compilers/mono
parente978eb5986c7dc573974134d35c11e4cc12d66e2 (diff)
mono5: fixup build by using older gnumake
Of course, feel free to find a better fix.  For simplicity,
I switched all mono versions, even though 4 and 6 built fine on Hydra.
Diffstat (limited to 'pkgs/development/compilers/mono')
-rw-r--r--pkgs/development/compilers/mono/generic.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/compilers/mono/generic.nix b/pkgs/development/compilers/mono/generic.nix
index e4d99dcec955b..c510f372666a5 100644
--- a/pkgs/development/compilers/mono/generic.nix
+++ b/pkgs/development/compilers/mono/generic.nix
@@ -1,4 +1,5 @@
 { stdenv, fetchurl, bison, pkgconfig, glib, gettext, perl, libgdiplus, libX11, callPackage, ncurses, zlib, withLLVM ? false, cacert, Foundation, libobjc, python, version, sha256, autoconf, libtool, automake, cmake, which
+, gnumake42
 , enableParallelBuilding ? true
 , srcArchiveSuffix ? "tar.bz2"
 , extraPatches ? []
@@ -16,6 +17,7 @@ stdenv.mkDerivation rec {
     url = "https://download.mono-project.com/sources/mono/${pname}-${version}.${srcArchiveSuffix}";
   };
 
+  nativeBuildInputs = [ gnumake42 ];
   buildInputs =
     [ bison pkgconfig glib gettext perl libgdiplus libX11 ncurses zlib python autoconf libtool automake cmake which
     ]