about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/frostwire
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2019-11-03 14:44:12 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2019-11-03 14:44:12 +0100
commit6b10b7887229d0efa60e654693b26c1d48eb7629 (patch)
treea5776d253430e870c3babb07870e29aa5bbbf2bd /pkgs/applications/networking/p2p/frostwire
parentddfe60ab55da88967d1679898e45620721c713f8 (diff)
parent6928b5c12b217ccf0b6cd3da679ec88986640293 (diff)
Merge remote-tracking branch 'origin/master' into gcc-9
Diffstat (limited to 'pkgs/applications/networking/p2p/frostwire')
-rw-r--r--pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix b/pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix
index 982acb44b5e32..c34d766a7e97b 100644
--- a/pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix
+++ b/pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix
@@ -3,7 +3,7 @@
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
-  version = "6.8.3";
+  version = "6.7.4";
   pname = "frostwire";
 
   src = fetchurl {
@@ -18,13 +18,11 @@ stdenv.mkDerivation rec {
     mv $(ls */*.jar) $out/share/java
 
     makeWrapper $out/share/java/frostwire $out/bin/frostwire \
-      --prefix PATH : ${jre}/bin/ \
-      --set JAVA_HOME ${jre.home} \
-      --add-flags '-classpath $CLASSPATH:$out/share/java/*'
+      --prefix PATH : ${jre}/bin/
   '';
 
   meta = with stdenv.lib; {
-    homepage = "https://www.frostwire.com/";
+    homepage = https://www.frostwire.com/;
     description = "BitTorrent Client and Cloud File Downloader";
     license = licenses.gpl2;
     maintainers = with maintainers; [ gavin ];