nixpkgs/pkgs/applications/kde/calindori.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

47 lines
667 B
Nix

{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, kcalendarcore
, kconfig
, kcoreaddons
, kdbusaddons
, ki18n
, kirigami2
, knotifications
, kpeople
, kservice
, qtquickcontrols2
}:
mkDerivation rec {
pname = "calindori";
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
kcalendarcore
kconfig
kcoreaddons
kdbusaddons
ki18n
kirigami2
knotifications
kpeople
kservice
qtquickcontrols2
];
meta = with lib; {
description = "Calendar for Plasma Mobile";
homepage = "https://invent.kde.org/plasma-mobile/calindori";
license = licenses.gpl3Plus;
maintainers = [ ];
};
}