nixpkgs/pkgs/applications/kde/telly-skout.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
519 B
Nix
Raw Normal View History

2023-03-17 22:39:35 +00:00
{
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";
2023-03-17 22:39:35 +00:00
homepage = "https://apps.kde.org/telly-skout/";
license = lib.licenses.gpl2Plus;
maintainers = [ ];
2023-03-17 22:39:35 +00:00
};
}