Skip to content

Commit

Permalink
ktorrent: 5.0.1 -> 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Sep 5, 2017
1 parent 82e0b91 commit 17f4cb4
Showing 1 changed file with 16 additions and 24 deletions.
40 changes: 16 additions & 24 deletions pkgs/applications/networking/p2p/ktorrent/default.nix
Original file line number Diff line number Diff line change
@@ -1,41 +1,33 @@
{ stdenv, fetchurl, cmake
, extra-cmake-modules, qtbase, qtscript
, ki18n, kio, knotifications, knotifyconfig, kdoctools, kross, kcmutils, kdelibs4support
, karchive, kcrash, kdnssd, ki18n, kio, knotifications, knotifyconfig
, kdoctools, kross, kcmutils, kwindowsystem
, libktorrent, boost, taglib, libgcrypt, kplotting
}:

stdenv.mkDerivation rec {
name = pname + "-" + version;

pname = "ktorrent";
version = "5.0.1";
name = "ktorrent-${version}";
version = "${libktorrent.mainVersion}.0";

src = fetchurl {
url = http://download.kde.org/stable/ktorrent/5.0/ktorrent-5.0.1.tar.xz;
sha256 = "1rbr932djmn1la6vs2sy1zdf39fmla8vwzfn76h7csncbp5fw3yh";
url = "mirror://kde/stable/ktorrent/${libktorrent.mainVersion}/${name}.tar.xz";
sha256 = "18w6qh09k84qpzaxxb76a4g59k4mx5wk897vqp1wwv80g0pqhmrw";
};

patches =
[ (fetchurl {
url = https://cgit.kde.org/ktorrent.git/patch/?id=f48acc22f0105ce6bac63294d248873ae231c6cc;
sha256 = "0jm4y35w2ypbjzf165rnjr224nq4w651ydnpd9zdn3inxh8r4s0v";
})
];

nativeBuildInputs = [ kdoctools extra-cmake-modules ];
nativeBuildInputs = [ cmake kdoctools extra-cmake-modules ];

buildInputs =
[ cmake qtbase qtscript
ki18n kio knotifications knotifyconfig kross kcmutils kdelibs4support
libktorrent taglib libgcrypt kplotting
];
buildInputs = [
qtbase qtscript
karchive kcrash kdnssd ki18n kio knotifications knotifyconfig kross kcmutils kwindowsystem
libktorrent taglib libgcrypt kplotting
];

enableParallelBuilding = true;

meta = {
meta = with stdenv.lib; {
description = "KDE integrated BtTorrent client";
homepage = https://www.kde.org/applications/internet/ktorrent/;
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.linux;
homepage = https://www.kde.org/applications/internet/ktorrent/;
maintainers = with maintainers; [ eelco ];
platforms = platforms.linux;
};
}

0 comments on commit 17f4cb4

Please sign in to comment.