nixpkgs/pkgs/applications/blockchains/wasabiwallet/default.nix

67 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-06-03 20:46:43 +01:00
, fetchurl
, makeDesktopItem
, curl
, dotnet-netcore
, fontconfig
, krb5
, openssl
, xorg
, zlib
}:
2019-06-03 19:12:56 +01:00
2020-06-03 20:46:43 +01:00
let
2021-01-15 13:21:58 +00:00
libPath = lib.makeLibraryPath [
2020-06-03 20:46:43 +01:00
curl
dotnet-netcore
fontconfig.lib
krb5
openssl
stdenv.cc.cc.lib
xorg.libX11
zlib
];
in
2019-06-03 19:12:56 +01:00
stdenv.mkDerivation rec {
pname = "wasabiwallet";
2020-12-11 05:29:29 +00:00
version = "1.1.12.3";
2019-06-03 19:12:56 +01:00
2019-09-07 15:33:30 +01:00
src = fetchurl {
2020-08-25 16:48:37 +01:00
url = "https://github.com/zkSNACKs/WalletWasabi/releases/download/v${version}/Wasabi-${version}.tar.gz";
2020-12-11 05:29:29 +00:00
sha256 = "1x4gqmiwdp5bjq7c5hjch3srsvf73d92lswnp355l7l7cxh2hcsx";
2019-09-07 15:33:30 +01:00
};
2019-06-03 19:12:56 +01:00
2019-09-07 15:33:30 +01:00
dontBuild = true;
dontPatchELF = true;
2019-06-03 19:12:56 +01:00
2019-09-07 15:33:30 +01:00
desktopItem = makeDesktopItem {
name = "wasabi";
exec = "wasabiwallet";
desktopName = "Wasabi";
genericName = "Bitcoin wallet";
comment = meta.description;
categories = "Network;Utility;";
2019-09-07 15:33:30 +01:00
};
2019-06-03 19:12:56 +01:00
installPhase = ''
2019-09-07 15:33:30 +01:00
mkdir -p $out/opt/${pname} $out/bin $out/share/applications
cp -Rv . $out/opt/${pname}
cd $out/opt/${pname}
for i in $(find . -type f -name '*.so') wassabee
do
2020-06-03 20:46:43 +01:00
patchelf --set-rpath ${libPath} $i
2019-09-07 15:33:30 +01:00
done
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" wassabee
ln -s $out/opt/${pname}/wassabee $out/bin/${pname}
cp -v $desktopItem/share/applications/* $out/share/applications
'';
2019-06-03 19:12:56 +01:00
meta = with lib; {
2019-06-03 19:12:56 +01:00
description = "Privacy focused Bitcoin wallet";
homepage = "https://wasabiwallet.io/";
license = licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ mmahut ];
};
}