mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
20 lines
414 B
Nix
20 lines
414 B
Nix
{ kde, kdelibs, libktorrent, kde_workspace, sqlite, boost
|
|
, kde_baseapps, libmms, qca2, nepomuk_core, nepomuk_widgets
|
|
, pkgconfig }:
|
|
|
|
kde {
|
|
|
|
# TODO: QGpgME
|
|
|
|
buildInputs =
|
|
[ kdelibs libktorrent nepomuk_core nepomuk_widgets sqlite qca2
|
|
libmms kde_baseapps kde_workspace boost ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
KDEDIRS = libktorrent;
|
|
|
|
meta = {
|
|
description = "KDE download manager";
|
|
};
|
|
}
|