summary refs log tree commit diff
path: root/pkgs/development/libraries/libktorrent/default.nix
blob: 8b5f189a9e1e380364ca84cdb0139d1867fd6347 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, fetchurl, cmake, extra-cmake-modules
, karchive, kcrash, ki18n, kio, solid
, boost, gmp, qca-qt5, libgcrypt
}:

let
    mainVersion = "5.1";

in stdenv.mkDerivation rec {
  name = "libktorrent-2.1";

  src = fetchurl {
    url    = "mirror://kde/stable/ktorrent/${mainVersion}/${name}.tar.xz";
    sha256 = "0vz2dwc4xd80q56g6r5bx5wqdl9fxcibxmw2irahqhbkxk7drvry";
  };

  outputs = [ "out" "dev" ];

  nativeBuildInputs = [ cmake extra-cmake-modules ];

  buildInputs = [ karchive kcrash ki18n kio solid qca-qt5 libgcrypt ];

  propagatedBuildInputs = [ gmp boost ];

  enableParallelBuilding = true;

  passthru = {
    inherit mainVersion;
  };

  meta = with stdenv.lib; {
    description = "A BitTorrent library used by KTorrent";
    homepage    = https://www.kde.org/applications/internet/ktorrent/;
    maintainers = with maintainers; [ eelco ];
    platforms   = platforms.linux;
  };
}