fix(dotnet): fix DOTNET_ROOT

This commit is contained in:
Felix Schröter 2020-08-25 21:35:23 +02:00
parent 9790d77cac
commit f6babb6893
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58

View file

@ -3,9 +3,9 @@
with pkgs; with pkgs;
let let
dotnet-combined = with dotnetCorePackages; combinePackages [ sdk_3_1 sdk_2_1 ]; dotnet-combined = with dotnetCorePackages; combinePackages [ sdk_3_1 sdk_2_1 ];
dotnetRoot = "${dotnet-combined}/bin"; dotnetRoot = "${dotnet-combined}";
dotnetSdk = "${dotnet-combined}/sdk"; dotnetSdk = "${dotnet-combined}/sdk";
dotnetBinary = "${dotnetRoot}/dotnet"; dotnetBinary = "${dotnetRoot}/bin/dotnet";
in in
{ {
home.packages = [ home.packages = [