1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 20:12:52 +00:00
nixpkgs/pkgs/applications/networking/p2p/ktorrent/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

2019-10-07 01:31:23 +01:00
{ mkDerivation, lib, fetchurl, fetchpatch, cmake
, extra-cmake-modules, qtbase, qtscript
2017-09-05 11:26:52 +01:00
, karchive, kcrash, kdnssd, ki18n, kio, knotifications, knotifyconfig
, kdoctools, kross, kcmutils, kwindowsystem
, libktorrent, taglib, libgcrypt, kplotting
}:
2019-10-07 01:31:23 +01:00
mkDerivation rec {
pname = "ktorrent";
version = "${libktorrent.mainVersion}";
src = fetchurl {
url = "mirror://kde/stable/ktorrent/${libktorrent.mainVersion}/${pname}-${version}.tar.xz";
sha256 = "0kwd0npxfg4mdh7f3xadd2zjlqalpb1jxk61505qpcgcssijf534";
};
2017-09-05 11:26:52 +01:00
nativeBuildInputs = [ cmake kdoctools extra-cmake-modules ];
2017-09-05 11:26:52 +01:00
buildInputs = [
qtbase qtscript
karchive kcrash kdnssd ki18n kio knotifications knotifyconfig kross kcmutils kwindowsystem
libktorrent taglib libgcrypt kplotting
];
2019-10-07 01:31:23 +01:00
meta = with lib; {
description = "KDE integrated BtTorrent client";
homepage = "https://www.kde.org/applications/internet/ktorrent/";
2017-09-07 03:41:51 +01:00
license = licenses.gpl2;
2017-09-05 11:26:52 +01:00
maintainers = with maintainers; [ eelco ];
platforms = platforms.linux;
};
}