mono6: init at 6.0.0.313

This commit is contained in:
Jiri Danek 2019-08-03 19:43:32 +02:00
parent 514af58478
commit 3916f79ce5
3 changed files with 19 additions and 3 deletions

View file

@ -0,0 +1,9 @@
{ callPackage, Foundation, libobjc }:
callPackage ./generic.nix (rec {
inherit Foundation libobjc;
version = "6.0.0.313";
srcArchiveSuffix = "tar.xz";
sha256 = "0l0cd6q5xh1vdm6zr78rkfqdsmrgzanjgpxvgig0pyd3glfyjim9";
enableParallelBuilding = true;
})

View file

@ -1,14 +1,16 @@
{ 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, enableParallelBuilding ? true }:
{ 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
, enableParallelBuilding ? true
, srcArchiveSuffix ? "tar.bz2"
}:
let
llvm = callPackage ./llvm.nix { };
in
stdenv.mkDerivation rec {
name = "mono-${version}";
src = fetchurl {
inherit sha256;
url = "https://download.mono-project.com/sources/mono/${name}.tar.bz2";
url = "https://download.mono-project.com/sources/mono/${name}.${srcArchiveSuffix}";
};
buildInputs =

View file

@ -8105,6 +8105,11 @@ in
inherit (darwin.apple_sdk.frameworks) Foundation;
};
mono6 = callPackage ../development/compilers/mono/6.nix {
inherit (darwin) libobjc;
inherit (darwin.apple_sdk.frameworks) Foundation;
};
monoDLLFixer = callPackage ../build-support/mono-dll-fixer { };
mosml = callPackage ../development/compilers/mosml { };