Skip to content

Commit

Permalink
Merge pull request #264569 from erdnaxe/mono-cross
Browse files Browse the repository at this point in the history
mono: use strictDeps
  • Loading branch information
symphorien authored Jan 13, 2024
2 parents d431d30 + 3fbf12b commit 8282c58
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions pkgs/development/compilers/mono/generic.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, bison, pkg-config, glib, gettext, perl, libgdiplus, libX11, callPackage, ncurses, zlib
{ lib, stdenv, fetchurl, bison, pkg-config, glib, gettext, perl, libgdiplus, libX11, callPackage, ncurses, zlib, bash
, withLLVM ? false, cacert, Foundation, libobjc, python3, version, sha256, autoconf, libtool, automake, cmake, which
, gnumake42
, enableParallelBuilding ? true
Expand All @@ -18,9 +18,27 @@ stdenv.mkDerivation rec {
url = "https://download.mono-project.com/sources/mono/${pname}-${version}.${srcArchiveSuffix}";
};

nativeBuildInputs = [ automake bison cmake pkg-config which gnumake42 ];
strictDeps = true;
nativeBuildInputs = [
autoconf
automake
bison
cmake
libtool
perl
pkg-config
python3
which
gnumake42
];
buildInputs = [
glib gettext perl libgdiplus libX11 ncurses zlib python3 autoconf libtool
glib
gettext
libgdiplus
libX11
ncurses
zlib
bash
] ++ lib.optionals stdenv.isDarwin [ Foundation libobjc ];

configureFlags = [
Expand Down

0 comments on commit 8282c58

Please sign in to comment.