anbox: drop (#370821)
[NixPkgs.git] / pkgs / applications / kde / qmlkonsole.nix
blob5cf001eb1ed196f444dab139d9842f0fe3bacf36
2   lib,
3   mkDerivation,
5   cmake,
6   extra-cmake-modules,
8   kconfig,
9   ki18n,
10   kirigami-addons,
11   kirigami2,
12   kcoreaddons,
13   qtquickcontrols2,
14   kwindowsystem,
15   qmltermwidget,
18 mkDerivation {
19   pname = "qmlkonsole";
21   nativeBuildInputs = [
22     cmake
23     extra-cmake-modules
24   ];
26   buildInputs = [
27     kconfig
28     ki18n
29     kirigami-addons
30     kirigami2
31     qtquickcontrols2
32     kcoreaddons
33     kwindowsystem
34     qmltermwidget
35   ];
37   meta = with lib; {
38     description = "Terminal app for Plasma Mobile";
39     mainProgram = "qmlkonsole";
40     homepage = "https://invent.kde.org/plasma-mobile/qmlkonsole";
41     license = with licenses; [
42       gpl2Plus
43       gpl3Plus
44       cc0
45     ];
46     maintainers = with maintainers; [ balsoft ];
47   };