wasabiwallet: init at 1.1.5
This commit is contained in:
parent
1a28cf8943
commit
3d0028e735
|
@ -0,0 +1,44 @@
|
||||||
|
{ stdenv, fetchurl, makeDesktopItem, openssl_1_1, xorg, curl, fontconfig, krb5, zlib, dotnet-sdk }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "wasabiwallet";
|
||||||
|
version = "1.1.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/zkSNACKs/WalletWasabi/releases/download/v${version}/WasabiLinux-${version}.tar.gz";
|
||||||
|
sha256 = "1iq7qkpq073yq1bz8pam4cbm2myznhpjr3g9afblvmxwgbdjxak0";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
dontPatchELF = true;
|
||||||
|
|
||||||
|
desktopItem = makeDesktopItem {
|
||||||
|
name = "wasabi";
|
||||||
|
exec = "wasabiwallet";
|
||||||
|
desktopName = "Wasabi";
|
||||||
|
genericName = "Bitcoin wallet";
|
||||||
|
comment = meta.description;
|
||||||
|
categories = "Application;Network;Utility;";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
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
|
||||||
|
patchelf --set-rpath ${stdenv.lib.makeLibraryPath [ openssl_1_1 stdenv.cc.cc.lib xorg.libX11 curl fontconfig.lib krb5 zlib dotnet-sdk ]} $i
|
||||||
|
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
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Privacy focused Bitcoin wallet";
|
||||||
|
homepage = "https://wasabiwallet.io/";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
maintainers = with maintainers; [ mmahut ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6503,6 +6503,8 @@ in
|
||||||
|
|
||||||
wal_e = callPackage ../tools/backup/wal-e { };
|
wal_e = callPackage ../tools/backup/wal-e { };
|
||||||
|
|
||||||
|
wasabiwallet = callPackage ../applications/altcoins/wasabiwallet { };
|
||||||
|
|
||||||
watchexec = callPackage ../tools/misc/watchexec {
|
watchexec = callPackage ../tools/misc/watchexec {
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue