forked from mirrors/nixpkgs
77 lines
1.8 KiB
Nix
77 lines
1.8 KiB
Nix
{ lib, stdenv
|
|
, autoPatchelfHook
|
|
, makeWrapper
|
|
, fetchurl
|
|
, makeDesktopItem
|
|
, curl
|
|
, dotnetCorePackages
|
|
, lttng-ust_2_12
|
|
, fontconfig
|
|
, krb5
|
|
, openssl
|
|
, xorg
|
|
, zlib
|
|
}:
|
|
|
|
let
|
|
dotnet-runtime = dotnetCorePackages.runtime_6_0;
|
|
# These libraries are dynamically loaded by the application,
|
|
# and need to be present in LD_LIBRARY_PATH
|
|
runtimeLibs = [
|
|
curl
|
|
fontconfig.lib
|
|
krb5
|
|
openssl
|
|
stdenv.cc.cc.lib
|
|
xorg.libX11
|
|
xorg.libICE
|
|
xorg.libSM
|
|
zlib
|
|
];
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "wasabiwallet";
|
|
version = "2.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/zkSNACKs/WalletWasabi/releases/download/v${version}/Wasabi-${version}.tar.gz";
|
|
sha256 = "sha256-RlWaeOK6XqxyCIQQp1/X6iG9t7f3ER5K+S3ZvPg6wBg=";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "wasabi";
|
|
exec = "wasabiwallet";
|
|
desktopName = "Wasabi";
|
|
genericName = "Bitcoin wallet";
|
|
comment = meta.description;
|
|
categories = [ "Network" "Utility" ];
|
|
};
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper ];
|
|
buildInputs = runtimeLibs ++ [
|
|
lttng-ust_2_12
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/opt/${pname} $out/bin $out/share/applications
|
|
cp -Rv . $out/opt/${pname}
|
|
|
|
makeWrapper "${dotnet-runtime}/bin/dotnet" "$out/bin/${pname}" \
|
|
--add-flags "$out/opt/${pname}/WalletWasabi.Fluent.Desktop.dll" \
|
|
--suffix "LD_LIBRARY_PATH" : "${lib.makeLibraryPath runtimeLibs}"
|
|
|
|
cp -v $desktopItem/share/applications/* $out/share/applications
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Privacy focused Bitcoin wallet";
|
|
homepage = "https://wasabiwallet.io/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ mmahut ];
|
|
};
|
|
}
|