mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
aab1113d4a
grep -rP 'maintainers = \[\];'
25 lines
487 B
Nix
25 lines
487 B
Nix
{ 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 = "Convergent Kirigami TV guide";
|
|
mainProgram = "telly-skout";
|
|
homepage = "https://apps.kde.org/telly-skout/";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
};
|
|
}
|