summary refs log blame commit diff
path: root/pkgs/applications/kde/libktorrent.nix
blob: 3b4ae5f72f7f070389222ff7d292a86fb60e8968 (plain) (tree)





















                                                                      
{
  mkDerivation, lib,
  extra-cmake-modules,
  karchive, kcrash, ki18n, kio, libgcrypt, qca-qt5, solid,
  boost, gmp
}:

mkDerivation {
  pname = "libktorrent";
  meta = with lib; {
    description = "A BitTorrent library used by KTorrent";
    homepage    = "https://apps.kde.org/ktorrent/";
    maintainers = with maintainers; [ eelco ];
  };

  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ karchive kcrash ki18n kio libgcrypt qca-qt5 solid ];
  propagatedBuildInputs = [ boost gmp ];
  outputs = [ "out" "dev" ];

  dontWrapQtApps = true;
}