18bad4282a
GitOrigin-RevId: 1c2986bbb806c57f9470bf3231d8da7250ab9091
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" ];
|
|
}
|