mono6: init at 6.0.0.313
This commit is contained in:
parent
514af58478
commit
3916f79ce5
3 changed files with 19 additions and 3 deletions
9
pkgs/development/compilers/mono/6.nix
Normal file
9
pkgs/development/compilers/mono/6.nix
Normal 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;
|
||||||
|
})
|
|
@ -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
|
let
|
||||||
llvm = callPackage ./llvm.nix { };
|
llvm = callPackage ./llvm.nix { };
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mono-${version}";
|
name = "mono-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
inherit sha256;
|
inherit sha256;
|
||||||
url = "https://download.mono-project.com/sources/mono/${name}.tar.bz2";
|
url = "https://download.mono-project.com/sources/mono/${name}.${srcArchiveSuffix}";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
|
|
|
@ -8105,6 +8105,11 @@ in
|
||||||
inherit (darwin.apple_sdk.frameworks) Foundation;
|
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 { };
|
monoDLLFixer = callPackage ../build-support/mono-dll-fixer { };
|
||||||
|
|
||||||
mosml = callPackage ../development/compilers/mosml { };
|
mosml = callPackage ../development/compilers/mosml { };
|
||||||
|
|
Loading…
Reference in a new issue