nixpkgs/pkgs/development/compilers/coreclr/default.nix

93 lines
1.8 KiB
Nix
Raw Normal View History

2015-06-24 11:56:24 +00:00
{ stdenv
, fetchFromGitHub
2017-11-10 15:26:38 +00:00
, fetchpatch
2015-06-24 11:56:24 +00:00
, which
, cmake
2017-01-27 19:12:54 +00:00
, clang
, llvmPackages
2015-06-24 11:56:24 +00:00
, libunwind
, gettext
, openssl
2016-10-02 15:43:06 +00:00
, python2
, icu
, lttng-ust
, liburcu
, libuuid
2017-10-05 14:41:27 +00:00
, libkrb5
2016-10-02 15:43:06 +00:00
, debug ? false
2015-06-24 11:56:24 +00:00
}:
stdenv.mkDerivation rec {
name = "coreclr-${version}";
2017-10-05 14:41:27 +00:00
version = "2.0.0";
2015-06-24 11:56:24 +00:00
src = fetchFromGitHub {
2016-10-02 15:43:06 +00:00
owner = "dotnet";
repo = "coreclr";
rev = "v${version}";
2017-10-05 14:41:27 +00:00
sha256 = "16z58ix8kmk8csfy5qsqz8z30czhrap2vb8s8vdflmbcfnq31jcw";
2015-06-24 11:56:24 +00:00
};
2017-11-10 15:26:38 +00:00
patches = [
(fetchpatch {
# glibc 2.26
url = https://github.com/dotnet/coreclr/commit/a8f83b615708c529b112898e7d2fbc3f618b26ee.patch;
sha256 = "047ph5gip4z2h7liwdxsmpnlaq0sd3hliaw4nyqjp647m80g3ffq";
})
];
2015-06-24 11:56:24 +00:00
buildInputs = [
which
cmake
2017-01-27 19:12:54 +00:00
clang
llvmPackages.llvm
llvmPackages.lldb
2015-06-24 11:56:24 +00:00
libunwind
gettext
openssl
2016-10-02 15:43:06 +00:00
python2
icu
lttng-ust
liburcu
libuuid
2017-10-05 14:41:27 +00:00
libkrb5
2015-06-24 11:56:24 +00:00
];
configurePhase = ''
2017-10-06 13:52:08 +00:00
# override to avoid cmake running
patchShebangs .
2015-06-24 11:56:24 +00:00
'';
2016-10-02 15:43:06 +00:00
BuildArch = if stdenv.is64bit then "x64" else "x86";
BuildType = if debug then "Debug" else "Release";
2015-06-24 11:56:24 +00:00
2017-10-06 13:52:08 +00:00
hardeningDisable = [
"strictoverflow"
"format"
2017-01-27 19:12:54 +00:00
];
2016-10-02 15:43:06 +00:00
buildPhase = ''
2017-10-06 13:52:08 +00:00
runHook preBuild
2017-10-09 22:58:11 +00:00
./build.sh $BuildArch $BuildType
2017-10-06 13:52:08 +00:00
runHook postBuild
2015-06-24 11:56:24 +00:00
'';
2016-10-02 15:43:06 +00:00
installPhase = ''
2017-10-06 13:52:08 +00:00
runHook preInstall
mkdir -p $out/share/dotnet $out/bin
cp -r bin/Product/Linux.$BuildArch.$BuildType/* $out/share/dotnet
for cmd in coreconsole corerun createdump crossgen ilasm ildasm mcs superpmi; do
ln -s $out/share/dotnet/$cmd $out/bin/$cmd
done
runHook postInstall
2016-10-02 15:43:06 +00:00
'';
2017-10-06 13:52:08 +00:00
meta = with stdenv.lib; {
2015-06-24 11:56:24 +00:00
homepage = http://dotnet.github.io/core/;
description = ".NET is a general purpose development platform";
platforms = [ "x86_64-linux" ];
2017-10-08 20:22:07 +00:00
maintainers = with maintainers; [ kuznero ];
2017-10-06 13:52:08 +00:00
license = licenses.mit;
2015-06-24 11:56:24 +00:00
};
}