mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
23 lines
561 B
Nix
23 lines
561 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
karchive, kcrash, ki18n, kio, libgcrypt, qca-qt5, solid,
|
|
boost, gmp
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "libktorrent";
|
|
meta = with lib; {
|
|
description = "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;
|
|
}
|