telly-skout: init

K900 c38151aa 0f538b4d

+25
+1
pkgs/applications/kde/default.nix
··· 253 neochat = callPackage ./neochat.nix {}; 254 plasmatube = callPackage ./plasmatube {}; 255 qmlkonsole = callPackage ./qmlkonsole.nix {}; 256 tokodon = callPackage ./tokodon.nix {}; 257 }; 258
··· 253 neochat = callPackage ./neochat.nix {}; 254 plasmatube = callPackage ./plasmatube {}; 255 qmlkonsole = callPackage ./qmlkonsole.nix {}; 256 + telly-skout = callPackage ./telly-skout.nix {}; 257 tokodon = callPackage ./tokodon.nix {}; 258 }; 259
+24
pkgs/applications/kde/telly-skout.nix
···
··· 1 + { mkDerivation 2 + , lib 3 + , extra-cmake-modules 4 + , qtquickcontrols2 5 + , kcoreaddons 6 + , kconfig 7 + , ki18n 8 + , kirigami2 9 + }: 10 + 11 + mkDerivation { 12 + pname = "telly-skout"; 13 + 14 + nativeBuildInputs = [ extra-cmake-modules ]; 15 + 16 + buildInputs = [ qtquickcontrols2 kcoreaddons kconfig ki18n kirigami2 ]; 17 + 18 + meta = { 19 + description = "A convergent Kirigami TV guide"; 20 + homepage = "https://apps.kde.org/telly-skout/"; 21 + license = lib.licenses.gpl2Plus; 22 + maintainers = []; 23 + }; 24 + }