7ff8b88e6e
Borrowing expressions from a stalled/stale PR: NixOS/nixpkgs#98212. Co-authored-by: freezeboy <freezeboy@users.noreply.github.com> Signed-off-by: Kenny Ballou <kb@devnulllabs.io>
25 lines
606 B
Nix
25 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" ];
|
|
}
|