summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authornyanloutre <paul@nyanlout.re>2020-01-18 03:25:17 +0100
committerJon <jonringer@users.noreply.github.com>2020-01-19 14:30:39 -0800
commit61fd512651ffe0163ef4ccdfbcd0e34dd6acc78c (patch)
treef4a9102cc5e2adc55d57e470204055b6ee985d64 /pkgs/applications/blockchains
parent11569307443d0865bc22e1331313683c37b48bfe (diff)
downloadnixpkgs-61fd512651ffe0163ef4ccdfbcd0e34dd6acc78c.tar
nixpkgs-61fd512651ffe0163ef4ccdfbcd0e34dd6acc78c.tar.gz
nixpkgs-61fd512651ffe0163ef4ccdfbcd0e34dd6acc78c.tar.bz2
nixpkgs-61fd512651ffe0163ef4ccdfbcd0e34dd6acc78c.tar.lz
nixpkgs-61fd512651ffe0163ef4ccdfbcd0e34dd6acc78c.tar.xz
nixpkgs-61fd512651ffe0163ef4ccdfbcd0e34dd6acc78c.tar.zst
nixpkgs-61fd512651ffe0163ef4ccdfbcd0e34dd6acc78c.zip
wasabiwallet: use dotnet runtime instead of sdk
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/wasabiwallet/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/blockchains/wasabiwallet/default.nix b/pkgs/applications/blockchains/wasabiwallet/default.nix
index 9599dc9407c..6b9630fa6b7 100644
--- a/pkgs/applications/blockchains/wasabiwallet/default.nix
+++ b/pkgs/applications/blockchains/wasabiwallet/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, makeDesktopItem, openssl, xorg, curl, fontconfig, krb5, zlib, dotnet-sdk }:
+{ stdenv, fetchurl, makeDesktopItem, openssl, xorg, curl, fontconfig, krb5, zlib, dotnet-netcore }:
 
 stdenv.mkDerivation rec {
   pname = "wasabiwallet";
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
     cd $out/opt/${pname}
     for i in $(find . -type f -name '*.so') wassabee
       do
-        patchelf --set-rpath ${stdenv.lib.makeLibraryPath [ openssl stdenv.cc.cc.lib xorg.libX11 curl fontconfig.lib krb5 zlib dotnet-sdk ]} $i
+        patchelf --set-rpath ${stdenv.lib.makeLibraryPath [ openssl stdenv.cc.cc.lib xorg.libX11 curl fontconfig.lib krb5 zlib dotnet-netcore ]} $i
       done
     patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" wassabee
     ln -s $out/opt/${pname}/wassabee $out/bin/${pname}