about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/telly-skout.nix
blob: 9ecff11c0e082629385e830009e4c1f461f9e45a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ mkDerivation
, lib
, extra-cmake-modules
, qtquickcontrols2
, kcoreaddons
, kconfig
, ki18n
, kirigami2
}:

mkDerivation {
  pname = "telly-skout";

  nativeBuildInputs = [ extra-cmake-modules ];

  buildInputs = [ qtquickcontrols2 kcoreaddons kconfig ki18n kirigami2 ];

  meta = {
    description = "A convergent Kirigami TV guide";
    mainProgram = "telly-skout";
    homepage = "https://apps.kde.org/telly-skout/";
    license = lib.licenses.gpl2Plus;
    maintainers = [];
  };
}