mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
telly-skout: init
This commit is contained in:
parent
0f538b4dff
commit
c38151aa5e
|
@ -253,6 +253,7 @@ let
|
|||
neochat = callPackage ./neochat.nix {};
|
||||
plasmatube = callPackage ./plasmatube {};
|
||||
qmlkonsole = callPackage ./qmlkonsole.nix {};
|
||||
telly-skout = callPackage ./telly-skout.nix {};
|
||||
tokodon = callPackage ./tokodon.nix {};
|
||||
};
|
||||
|
||||
|
|
24
pkgs/applications/kde/telly-skout.nix
Normal file
24
pkgs/applications/kde/telly-skout.nix
Normal file
|
@ -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 = [];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue