nixpkgs/pkgs/development/compilers/mono/generic.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

163 lines
4.1 KiB
Nix
Raw Normal View History

2024-11-21 23:28:53 +00:00
{
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,
srcArchiveSuffix ? "tar.bz2",
extraPatches ? [ ],
2019-08-03 17:43:32 +00:00
}:
2017-04-24 19:20:59 +00:00
let
2022-11-28 00:55:12 +00:00
llvm = callPackage ./llvm.nix { };
2017-04-24 19:20:59 +00:00
in
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "mono";
inherit version;
2017-04-24 19:20:59 +00:00
src = fetchurl {
inherit sha256;
2019-08-27 14:36:47 +00:00
url = "https://download.mono-project.com/sources/mono/${pname}-${version}.${srcArchiveSuffix}";
2017-04-24 19:20:59 +00:00
};
2023-10-31 11:33:22 +00:00
strictDeps = true;
nativeBuildInputs = [
autoconf
automake
bison
cmake
libtool
perl
pkg-config
python3
which
gnumake42
];
2024-11-21 23:28:53 +00:00
buildInputs =
[
glib
gettext
libgdiplus
libX11
ncurses
zlib
bash
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
Foundation
libobjc
];
2017-04-24 19:20:59 +00:00
2024-11-21 23:28:53 +00:00
configureFlags =
[
"--x-includes=${libX11.dev}/include"
"--x-libraries=${libX11.out}/lib"
"--with-libgdiplus=${libgdiplus}/lib/libgdiplus.so"
]
++ lib.optionals withLLVM [
"--enable-llvm"
"--with-llvm=${llvm}"
];
2017-04-24 19:20:59 +00:00
2017-04-26 06:41:53 +00:00
configurePhase = ''
2022-11-28 00:55:12 +00:00
patchShebangs autogen.sh mcs/build/start-compiler-server.sh
./autogen.sh --prefix $out $configureFlags
2017-04-26 06:41:53 +00:00
'';
2017-04-24 19:20:59 +00:00
# We want pkg-config to take priority over the dlls in the Mono framework and the GAC
# because we control pkg-config
2020-01-25 11:15:03 +00:00
patches = [ ./pkgconfig-before-gac.patch ] ++ extraPatches;
2017-04-24 19:20:59 +00:00
# Patch all the necessary scripts. Also, if we're using LLVM, we fix the default
# LLVM path to point into the Mono LLVM build, since it's private anyway.
2024-11-21 23:28:53 +00:00
preBuild =
''
makeFlagsArray=(INSTALL=`type -tp install`)
substituteInPlace mcs/class/corlib/System/Environment.cs --replace /usr/share "$out/share"
''
+ lib.optionalString withLLVM ''
substituteInPlace mono/mini/aot-compiler.c --replace "llvm_path = g_strdup (\"\")" "llvm_path = g_strdup (\"${llvm}/bin/\")"
'';
2017-04-24 19:20:59 +00:00
# Fix mono DLLMap so it can find libX11 to run winforms apps
# libgdiplus is correctly handled by the --with-libgdiplus configure flag
2017-04-24 19:20:59 +00:00
# Other items in the DLLMap may need to be pointed to their store locations, I don't think this is exhaustive
# https://www.mono-project.com/Config_DllMap
2017-04-24 19:20:59 +00:00
postBuild = ''
find . -name 'config' -type f | xargs \
sed -i -e "s@libX11.so.6@${libX11.out}/lib/libX11.so.6@g"
2017-04-24 19:20:59 +00:00
'';
# Without this, any Mono application attempting to open an SSL connection will throw with
# The authentication or decryption has failed.
# ---> Mono.Security.Protocol.Tls.TlsException: Invalid certificate received from server.
2024-11-21 23:28:53 +00:00
postInstall =
''
echo "Updating Mono key store"
$out/bin/cert-sync ${cacert}/etc/ssl/certs/ca-bundle.crt
''
# According to [1], gmcs is just mcs
# [1] https://github.com/mono/mono/blob/master/scripts/gmcs.in
+ ''
ln -s $out/bin/mcs $out/bin/gmcs
'';
2017-04-24 19:20:59 +00:00
inherit enableParallelBuilding;
meta = with lib; {
2022-07-11 06:12:10 +00:00
# Per nixpkgs#151720 the build failures for aarch64-darwin are fixed since 6.12.0.129
2024-11-21 23:28:53 +00:00
broken =
stdenv.hostPlatform.isDarwin
&& stdenv.hostPlatform.isAarch64
&& lib.versionOlder version "6.12.0.129";
homepage = "https://mono-project.com/";
2017-04-24 19:20:59 +00:00
description = "Cross platform, open source .NET development framework";
platforms = with platforms; darwin ++ linux;
2024-11-21 23:28:53 +00:00
maintainers = with maintainers; [
thoughtpolice
obadz
];
2023-06-19 12:30:09 +00:00
license = with licenses; [
2024-11-21 23:28:53 +00:00
# runtime, compilers, tools and most class libraries licensed
mit
# runtime includes some code licensed
bsd3
# mcs/class/I18N/mklist.sh marked GPLv2 and others just GPL
gpl2Only
# RabbitMQ.Client class libraries dual licensed
mpl20
asl20
# mcs/class/System.Core/System/TimeZoneInfo.Android.cs
asl20
# some documentation
mspl
2023-06-19 12:30:09 +00:00
# https://www.mono-project.com/docs/faq/licensing/
# https://github.com/mono/mono/blob/main/LICENSE
];
2024-11-21 23:30:49 +00:00
mainProgram = "mono";
2017-04-24 19:20:59 +00:00
};
}