about summary refs log tree commit diff
path: root/pkgs/applications/kde/telly-skout.nix
blob: 4c84768a693aad4cb846eb4a1708cbafd00fc3e8 (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
{ 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";
    homepage = "https://apps.kde.org/telly-skout/";
    license = lib.licenses.gpl2Plus;
    maintainers = [];
  };
}