Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
23 lines
727 B
Nix
23 lines
727 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, kdoctools,
|
|
akonadi, karchive, kcompletion, kiconthemes, kidentitymanagement, kio,
|
|
kmailtransport, knewstuff, kwindowsystem, kxmlgui, libkdepim, pimcommon,
|
|
qtwebengine, syntax-highlighting,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "libksieve";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
outputs = [ "out" "dev" ];
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
akonadi karchive kcompletion kiconthemes kidentitymanagement kio
|
|
kmailtransport knewstuff kwindowsystem kxmlgui libkdepim pimcommon
|
|
qtwebengine
|
|
];
|
|
propagatedBuildInputs = [ syntax-highlighting ];
|
|
}
|