Merge pull request #216171 from NixOS/balsoft/add-qmlkonsole

plasma-mobile/qmlkonsole: init at 23.01.0

authored by Samuel Dionne-Riel and committed by GitHub 4f1b2d51 bb584ee6

+43
+1
pkgs/applications/plasma-mobile/default.nix
··· 78 plasma-phonebook = callPackage ./plasma-phonebook.nix {}; 79 plasma-settings = callPackage ./plasma-settings.nix {}; 80 plasmatube = callPackage ./plasmatube {}; 81 spacebar = callPackage ./spacebar.nix { inherit srcs; }; 82 tokodon = callPackage ./tokodon.nix {}; 83 };
··· 78 plasma-phonebook = callPackage ./plasma-phonebook.nix {}; 79 plasma-settings = callPackage ./plasma-settings.nix {}; 80 plasmatube = callPackage ./plasmatube {}; 81 + qmlkonsole = callPackage ./qmlkonsole.nix {}; 82 spacebar = callPackage ./spacebar.nix { inherit srcs; }; 83 tokodon = callPackage ./tokodon.nix {}; 84 };
+42
pkgs/applications/plasma-mobile/qmlkonsole.nix
···
··· 1 + { lib 2 + , mkDerivation 3 + 4 + , cmake 5 + , extra-cmake-modules 6 + 7 + , kconfig 8 + , ki18n 9 + , kirigami-addons 10 + , kirigami2 11 + , kcoreaddons 12 + , qtquickcontrols2 13 + , kwindowsystem 14 + , qmltermwidget 15 + }: 16 + 17 + mkDerivation { 18 + pname = "qmlkonsole"; 19 + 20 + nativeBuildInputs = [ 21 + cmake 22 + extra-cmake-modules 23 + ]; 24 + 25 + buildInputs = [ 26 + kconfig 27 + ki18n 28 + kirigami-addons 29 + kirigami2 30 + qtquickcontrols2 31 + kcoreaddons 32 + kwindowsystem 33 + qmltermwidget 34 + ]; 35 + 36 + meta = with lib; { 37 + description = "Terminal app for Plasma Mobile"; 38 + homepage = "https://invent.kde.org/plasma-mobile/qmlkonsole"; 39 + license = with licenses; [ gpl2Plus gpl3Plus cc0 ]; 40 + maintainers = with maintainers; [ balsoft ]; 41 + }; 42 + }