libsForQt5.station: init at 2.2.1

This commit is contained in:
Jonas Heinrich 2022-12-12 16:46:53 +01:00 committed by Robert Schütz
parent a8df04c790
commit 22450a3c2e
2 changed files with 37 additions and 0 deletions

View file

@ -78,6 +78,7 @@ let
nota = callPackage ./nota.nix { };
pix = callPackage ./pix.nix { };
shelf = callPackage ./shelf.nix { };
station = callPackage ./station.nix { };
vvave = callPackage ./vvave.nix { };
};

View file

@ -0,0 +1,36 @@
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, kcoreaddons
, ki18n
, kirigami2
, mauikit
, mauikit-filebrowsing
, qmltermwidget
}:
mkDerivation {
pname = "station";
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
kcoreaddons
ki18n
kirigami2
mauikit
mauikit-filebrowsing
qmltermwidget
];
meta = with lib; {
description = "Convergent terminal emulator";
homepage = "https://invent.kde.org/maui/station";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ onny ];
};
}