Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ac24901d1707
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d04b9f5b52cb
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 2, 2019

  1. Copy the full SHA
    569611f View commit details
  2. Merge pull request #72558 from NixOS/revert-60971-auto-update/frostwire

    Revert "frostwire-bin: 6.7.4 -> 6.8.3"
    mmahut authored Nov 2, 2019
    Copy the full SHA
    d04b9f5 View commit details
Showing with 4 additions and 6 deletions.
  1. +4 −6 pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix
10 changes: 4 additions & 6 deletions pkgs/applications/networking/p2p/frostwire/frostwire-bin.nix
Original file line number Diff line number Diff line change
@@ -3,12 +3,12 @@
with stdenv.lib;

stdenv.mkDerivation rec {
version = "6.8.3";
version = "6.7.4";
pname = "frostwire";

src = fetchurl {
url = "https://dl.frostwire.com/frostwire/${version}/frostwire-${version}.noarch.tar.gz";
sha256 = "00r7rxzk9a7a1sc0shdx7fq9p9dzg5pwfdf8day0kr1844a5arc2";
sha256 = "03vxg0qas4mz5ggrmi396nkz44x1kgq8bfbhbr9mnal9ay9qmi8m";
};

nativeBuildInputs = [ makeWrapper ];
@@ -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 ];