telly-skout: init

This commit is contained in:
K900 2023-03-18 01:39:35 +03:00
parent 0f538b4dff
commit c38151aa5e
2 changed files with 25 additions and 0 deletions

@ -253,6 +253,7 @@ let
neochat = callPackage ./neochat.nix {}; neochat = callPackage ./neochat.nix {};
plasmatube = callPackage ./plasmatube {}; plasmatube = callPackage ./plasmatube {};
qmlkonsole = callPackage ./qmlkonsole.nix {}; qmlkonsole = callPackage ./qmlkonsole.nix {};
telly-skout = callPackage ./telly-skout.nix {};
tokodon = callPackage ./tokodon.nix {}; tokodon = callPackage ./tokodon.nix {};
}; };

@ -0,0 +1,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 = [];
};
}