nixpkgs-suyu/pkgs/development/compilers/dotnet/build-dotnet.nix

98 lines
2.5 KiB
Nix
Raw Normal View History

{ type
, version
, sha512
}:
2020-07-16 23:02:04 +02:00
assert builtins.elem type [ "aspnetcore" "runtime" "sdk"];
{ lib
, stdenv
, fetchurl
, libunwind
, openssl
, icu
, libuuid
, zlib
, curl
2021-04-05 18:01:43 +02:00
, lttng-ust_2_12
2020-07-16 23:02:04 +02:00
}:
let
2020-07-16 23:23:49 +02:00
pname = if type == "aspnetcore" then
"aspnetcore-runtime"
else if type == "runtime" then
2020-07-16 23:23:49 +02:00
"dotnet-runtime"
else
"dotnet-sdk";
platform = {
x86_64-linux = "linux-x64";
aarch64-linux = "linux-arm64";
x86_64-darwin = "osx-x64";
aarch64-darwin = "osx-arm64";
}.${stdenv.hostPlatform.system} or (throw "unsupported system: ${stdenv.hostPlatform.system}");
2020-07-16 23:02:04 +02:00
urls = {
aspnetcore = "https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/${version}/${pname}-${version}-${platform}.tar.gz";
runtime = "https://dotnetcli.azureedge.net/dotnet/Runtime/${version}/${pname}-${version}-${platform}.tar.gz";
sdk = "https://dotnetcli.azureedge.net/dotnet/Sdk/${version}/${pname}-${version}-${platform}.tar.gz";
2020-07-16 23:02:04 +02:00
};
descriptions = {
aspnetcore = "ASP.NET Core Runtime ${version}";
runtime = ".NET Runtime ${version}";
2020-07-16 23:02:04 +02:00
sdk = ".NET SDK ${version}";
};
in stdenv.mkDerivation rec {
2020-07-16 23:02:04 +02:00
inherit pname version;
2021-04-05 18:01:43 +02:00
# Some of these dependencies are `dlopen()`ed.
rpath = lib.makeLibraryPath ([
2021-04-05 18:01:43 +02:00
stdenv.cc.cc
zlib
2020-07-16 23:23:49 +02:00
curl
icu
libunwind
libuuid
openssl
] ++ lib.optionals stdenv.isLinux [
lttng-ust_2_12
]);
2020-07-16 23:02:04 +02:00
src = fetchurl {
url = builtins.getAttr type urls;
2020-07-16 23:23:49 +02:00
sha512 = sha512."${stdenv.hostPlatform.system}" or (throw
"Missing hash for host system: ${stdenv.hostPlatform.system}");
2020-07-16 23:02:04 +02:00
};
2020-07-16 23:02:04 +02:00
sourceRoot = ".";
2020-07-16 23:02:04 +02:00
dontPatchELF = true;
noDumpEnvVars = true;
2020-07-16 23:02:04 +02:00
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp -r ./ $out
ln -s $out/dotnet $out/bin/dotnet
runHook postInstall
'';
postFixup = lib.optionalString stdenv.isLinux ''
2020-07-16 23:02:04 +02:00
patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" $out/dotnet
patchelf --set-rpath "${rpath}" $out/dotnet
find $out -type f -name "*.so" -exec patchelf --set-rpath '$ORIGIN:${rpath}' {} \;
2021-04-05 18:01:43 +02:00
find $out -type f \( -name "apphost" -or -name "createdump" \) -exec patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" --set-rpath '$ORIGIN:${rpath}' {} \;
2020-07-16 23:02:04 +02:00
'';
2020-07-16 23:02:04 +02:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/dotnet --info
'';
meta = with lib; {
2020-07-16 23:02:04 +02:00
homepage = "https://dotnet.github.io/";
description = builtins.getAttr type descriptions;
platforms = builtins.attrNames sha512;
2020-07-16 23:02:04 +02:00
maintainers = with maintainers; [ kuznero ];
license = licenses.mit;
};
}