mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
37 lines
569 B
Nix
37 lines
569 B
Nix
{ 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 ];
|
|
};
|
|
}
|