bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
66 lines
1.7 KiB
Nix
66 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
jre,
|
|
wrapGAppsHook3,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "biglybt";
|
|
version = "3.6.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/BiglySoftware/BiglyBT/releases/download/v${version}/GitHub_BiglyBT_unix.tar.gz";
|
|
hash = "sha256-a7g9sB3orO2m0X7qNwQ1dDygYPhs/b6kX0RDSG8Wq2U=";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook3 ];
|
|
|
|
configurePhase = ''
|
|
runHook preConfigure
|
|
|
|
sed -e 's/AUTOUPDATE_SCRIPT=1/AUTOUPDATE_SCRIPT=0/g' \
|
|
-i biglybt || die
|
|
|
|
runHook postConfigure
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -d $out/{share/{biglybt,applications,icons/hicolor/scalable/apps},bin}
|
|
|
|
cp -r ./* $out/share/biglybt/
|
|
|
|
ln -s $out/share/biglybt/biglybt.desktop $out/share/applications/
|
|
|
|
ln -s $out/share/biglybt/biglybt.svg $out/share/icons/hicolor/scalable/apps/
|
|
|
|
wrapProgram $out/share/biglybt/biglybt \
|
|
--prefix PATH : ${lib.makeBinPath [ jre ]}
|
|
|
|
ln -s $out/share/biglybt/biglybt $out/bin/
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [
|
|
"--version-regex"
|
|
"^(v[0-9.]+)$"
|
|
];
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/BiglySoftware/BiglyBT/releases/tag/v${version}";
|
|
description = "BitTorrent client based on the Azureus that supports I2P darknet for privacy";
|
|
downloadPage = "https://github.com/BiglySoftware/BiglyBT";
|
|
homepage = "https://www.biglybt.com/";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.unix;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
mainProgram = "biglybt";
|
|
maintainers = with lib.maintainers; [ raspher ];
|
|
};
|
|
}
|