anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / kde / qmlkonsole.nix
blob1071fce7e752f4be7cb7c453bba99966be774114
1 { lib
2 , mkDerivation
4 , cmake
5 , extra-cmake-modules
7 , kconfig
8 , ki18n
9 , kirigami-addons
10 , kirigami2
11 , kcoreaddons
12 , qtquickcontrols2
13 , kwindowsystem
14 , qmltermwidget
17 mkDerivation {
18   pname = "qmlkonsole";
20   nativeBuildInputs = [
21     cmake
22     extra-cmake-modules
23   ];
25   buildInputs = [
26     kconfig
27     ki18n
28     kirigami-addons
29     kirigami2
30     qtquickcontrols2
31     kcoreaddons
32     kwindowsystem
33     qmltermwidget
34   ];
36   meta = with lib; {
37     description = "Terminal app for Plasma Mobile";
38     mainProgram = "qmlkonsole";
39     homepage = "https://invent.kde.org/plasma-mobile/qmlkonsole";
40     license = with licenses; [ gpl2Plus gpl3Plus cc0 ];
41     maintainers = with maintainers; [ balsoft ];
42   };