Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
24 lines
606 B
Nix
24 lines
606 B
Nix
{ mkDerivation
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, akonadi
|
|
, calendarsupport
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "akonadi-calendar-tools";
|
|
meta = {
|
|
homepage = "https://github.com/KDE/akonadi-calendar-tools";
|
|
description = "Console applications and utilities for managing calendars in Akonadi";
|
|
license = with lib.licenses; [ gpl2Plus cc0 ];
|
|
maintainers = with lib.maintainers; [ kennyballou ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedBuildInputs = [
|
|
akonadi
|
|
calendarsupport
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
}
|