nixpkgs/pkgs/applications/networking/p2p/frostwire/default.nix

95 lines
3.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, gradle_6, perl, jre, makeWrapper, makeDesktopItem, mplayer }:
2018-02-27 04:54:19 +00:00
let
2018-05-31 21:33:15 +00:00
version = "6.6.7-build-529";
2018-02-27 04:54:19 +00:00
name = "frostwire-desktop-${version}";
2018-02-27 04:54:19 +00:00
src = fetchFromGitHub {
owner = "frostwire";
repo = "frostwire";
rev = name;
2018-05-31 21:33:15 +00:00
sha256 = "03wdj2kr8akzx8m1scvg98132zbaxh81qjdsxn2645b3gahjwz0m";
2018-02-27 04:54:19 +00:00
};
desktopItem = makeDesktopItem {
name = "frostwire";
desktopName = "FrostWire";
genericName = "P2P Bittorrent client";
exec = "frostwire";
icon = "frostwire";
comment = "Search and explore all kinds of files on the Bittorrent network";
categories = "Network;FileTransfer;P2P;";
};
2018-02-27 04:54:19 +00:00
# fake build to pre-download deps into fixed-output derivation
deps = stdenv.mkDerivation {
name = "${name}-deps";
inherit src;
buildInputs = [ gradle_6 perl ];
2018-02-27 04:54:19 +00:00
buildPhase = ''
export GRADLE_USER_HOME=$(mktemp -d)
( cd desktop
gradle --no-daemon build
)
'';
# perl code mavenizes pathes (com.squareup.okio/okio/1.13.0/a9283170b7305c8d92d25aff02a6ab7e45d06cbe/okio-1.13.0.jar -> com/squareup/okio/okio/1.13.0/okio-1.13.0.jar)
installPhase = ''
find $GRADLE_USER_HOME -type f -regex '.*\.\(jar\|pom\)' \
| perl -pe 's#(.*/([^/]+)/([^/]+)/([^/]+)/[0-9a-f]{30,40}/([^/\s]+))$# ($x = $2) =~ tr|\.|/|; "install -Dm444 $1 \$out/$x/$3/$4/$5" #e' \
2018-02-27 04:54:19 +00:00
| sh
'';
outputHashAlgo = "sha256";
outputHashMode = "recursive";
2018-05-31 21:33:15 +00:00
outputHash = "11zd98g0d0fdgls4lsskkagwfxyh26spfd6c6g9cahl89czvlg3c";
};
2018-02-27 04:54:19 +00:00
in stdenv.mkDerivation {
inherit name src;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ gradle_6 ];
2018-02-27 04:54:19 +00:00
buildPhase = ''
export GRADLE_USER_HOME=$(mktemp -d)
( cd desktop
2018-05-31 22:10:44 +00:00
# disable auto-update (anyway it won't update frostwire installed in nix store)
substituteInPlace src/com/frostwire/gui/updates/UpdateManager.java \
--replace 'um.checkForUpdates' '// um.checkForUpdates'
# fix path to mplayer
2018-02-27 04:54:19 +00:00
substituteInPlace src/com/frostwire/gui/player/MediaPlayerLinux.java \
--replace /usr/bin/mplayer ${mplayer}/bin/mplayer
2018-05-31 22:10:44 +00:00
2018-02-27 04:54:19 +00:00
substituteInPlace build.gradle \
--replace 'mavenCentral()' 'mavenLocal(); maven { url uri("${deps}") }'
gradle --offline --no-daemon build
)
'';
installPhase = ''
2018-02-27 04:54:19 +00:00
mkdir -p $out/lib $out/share/java
cp desktop/build/libs/frostwire.jar $out/share/java/frostwire.jar
cp ${ { x86_64-darwin = "desktop/lib/native/*.dylib";
2018-05-31 22:10:44 +00:00
x86_64-linux = "desktop/lib/native/lib{jlibtorrent,SystemUtilities}.so";
i686-linux = "desktop/lib/native/lib{jlibtorrent,SystemUtilities}X86.so";
}.${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}")
2018-02-27 04:54:19 +00:00
} $out/lib
cp -dpR ${desktopItem}/share $out
2018-02-27 04:54:19 +00:00
makeWrapper ${jre}/bin/java $out/bin/frostwire \
--add-flags "-Djava.library.path=$out/lib -jar $out/share/java/frostwire.jar"
'';
meta = with lib; {
homepage = "https://www.frostwire.com/";
description = "BitTorrent Client and Cloud File Downloader";
2017-03-04 01:59:56 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ gavin ];
2018-02-27 04:58:31 +00:00
platforms = [ "x86_64-darwin" "x86_64-linux" "i686-linux" ];
};
}