about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/ktimer.nix
blob: 7eab059f1a720dbd8bfe650bd30fef3c0975dbb9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ mkDerivation, lib, extra-cmake-modules, kdoctools, ki18n, kio }:

mkDerivation {
  pname = "ktimer";
  meta = with lib; {
    homepage = "https://kde.org/applications/en/utilities/org.kde.ktimer";
    description = "A little tool to execute programs after some time";
    maintainers = with maintainers; [ freezeboy ];
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kdoctools
    ki18n
    kio
  ];
}