summary refs log tree commit diff
path: root/pkgs/development/compilers/dotnet/buildDotnet.nix
blob: 1017c8b4975c2b22b61c9b08134b28df8442a3d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{ type
, version
, sha512
}:
assert builtins.elem type [ "aspnetcore" "netcore" "sdk"];
{ stdenv
, fetchurl
, libunwind
, openssl
, icu
, libuuid
, zlib
, curl
}: 
let pname = if type == "aspnetcore" then "aspnetcore-runtime" else if type == "netcore" then "dotnet-runtime" else "dotnet-sdk";
    urls = {
        aspnetcore = "https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/${version}/${pname}-${version}-linux-x64.tar.gz";
        netcore = "https://dotnetcli.azureedge.net/dotnet/Runtime/${version}/${pname}-${version}-linux-x64.tar.gz";
        sdk = "https://dotnetcli.azureedge.net/dotnet/Sdk/${version}/${pname}-${version}-linux-x64.tar.gz";
    };
    descriptions = {
        aspnetcore = "ASP .NET Core runtime ${version}";
        netcore = ".NET Core runtime ${version}";
        sdk = ".NET SDK ${version}";
    };
in stdenv.mkDerivation rec {
    inherit pname version;

    rpath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc libunwind libuuid icu openssl zlib curl ];

    src = fetchurl {
        url = builtins.getAttr type urls;
        inherit sha512;
    };

    sourceRoot = ".";

    dontPatchELF = true;
    noDumpEnvVars = true;

    installPhase = ''
        runHook preInstall
        mkdir -p $out/bin
        cp -r ./ $out
        ln -s $out/dotnet $out/bin/dotnet
        runHook postInstall
    '';

    postFixup = ''
        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}' {} \;
        find $out -type f -name "apphost" -exec patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" --set-rpath '$ORIGIN:${rpath}' {} \;
    '';

    doInstallCheck = true;
    installCheckPhase = ''
        $out/bin/dotnet --info
    '';

    meta = with stdenv.lib; {
        homepage = "https://dotnet.github.io/";
        description = builtins.getAttr type descriptions;
        platforms = [ "x86_64-linux" ];
        maintainers = with maintainers; [ kuznero ];
        license = licenses.mit;
    };
}