mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
961ca77734
This change introduces Java VM arguments to take advantage of optimizations introduced in Bisq 1.7.2. See https://github.com/bisq-network/bisq/pull/5609
101 lines
2.4 KiB
Nix
101 lines
2.4 KiB
Nix
{ stdenv
|
|
, lib
|
|
, makeWrapper
|
|
, fetchurl
|
|
, makeDesktopItem
|
|
, copyDesktopItems
|
|
, imagemagick
|
|
, openjdk11
|
|
, dpkg
|
|
, writeScript
|
|
, bash
|
|
, tor
|
|
, gnutar
|
|
, zip
|
|
, xz
|
|
}:
|
|
|
|
let
|
|
bisq-launcher = writeScript "bisq-launcher" ''
|
|
#! ${bash}/bin/bash
|
|
|
|
# This is just a comment to convince Nix that Tor is a
|
|
# runtime dependency; The Tor binary is in a *.jar file,
|
|
# whereas Nix only scans for hashes in uncompressed text.
|
|
# ${bisq-tor}
|
|
|
|
JAVA_TOOL_OPTIONS="-XX:+UseG1GC -XX:MaxHeapFreeRatio=10 -XX:MinHeapFreeRatio=5 -XX:+UseStringDeduplication" bisq-desktop-wrapped "$@"
|
|
'';
|
|
|
|
bisq-tor = writeScript "bisq-tor" ''
|
|
#! ${bash}/bin/bash
|
|
|
|
exec ${tor}/bin/tor "$@"
|
|
'';
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "bisq-desktop";
|
|
version = "1.7.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/bisq-network/bisq/releases/download/v${version}/Bisq-64bit-${version}.deb";
|
|
sha256 = "0b2rh9sphc9wffkawprrl20frgv0rah7y2k5sfxpjc3shgkqsw80";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper copyDesktopItems imagemagick dpkg gnutar zip xz ];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "Bisq";
|
|
exec = "bisq-desktop";
|
|
icon = "bisq";
|
|
desktopName = "Bisq ${version}";
|
|
genericName = "Decentralized bitcoin exchange";
|
|
categories = "Network;P2P;";
|
|
})
|
|
];
|
|
|
|
unpackPhase = ''
|
|
dpkg -x $src .
|
|
'';
|
|
|
|
buildPhase = ''
|
|
# Replace the embedded Tor binary (which is in a Tar archive)
|
|
# with one from Nixpkgs.
|
|
|
|
mkdir -p native/linux/x64/
|
|
cp ${bisq-tor} ./tor
|
|
tar -cJf native/linux/x64/tor.tar.xz tor
|
|
zip -r opt/bisq/lib/app/desktop-${version}-all.jar native
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/lib $out/bin
|
|
cp opt/bisq/lib/app/desktop-${version}-all.jar $out/lib
|
|
|
|
makeWrapper ${openjdk11}/bin/java $out/bin/bisq-desktop-wrapped \
|
|
--add-flags "-jar $out/lib/desktop-${version}-all.jar bisq.desktop.app.BisqAppMain"
|
|
|
|
makeWrapper ${bisq-launcher} $out/bin/bisq-desktop \
|
|
--prefix PATH : $out/bin
|
|
|
|
for n in 16 24 32 48 64 96 128 256; do
|
|
size=$n"x"$n
|
|
convert opt/bisq/lib/Bisq.png -resize $size bisq.png
|
|
install -Dm644 -t $out/share/icons/hicolor/$size/apps bisq.png
|
|
done;
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A decentralized bitcoin exchange network";
|
|
homepage = "https://bisq.network";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ juaningan emmanuelrosa ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|