
The original Mono project [1] was archived. It is now maintained by WineHQ on their gitlab [2]. This changes the homepage for the new mono package, and moves the source fetchers to the version profiles. [1] https://www.mono-project.com/ [2] https://gitlab.winehq.org/mono/mono
15 lines
411 B
Nix
15 lines
411 B
Nix
{
|
|
callPackage,
|
|
fetchurl,
|
|
}:
|
|
|
|
callPackage ./generic.nix rec {
|
|
version = "5.20.1.34";
|
|
enableParallelBuilding = true;
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types -Wno-error=implicit-function-declaration";
|
|
src = fetchurl {
|
|
url = "https://download.mono-project.com/sources/mono/mono-${version}.tar.bz2";
|
|
sha256 = "12vw5dkhmp1vk9l658pil8jiqirkpdsc5z8dm5mpj595yr6d94fd";
|
|
};
|
|
}
|