mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
34 lines
537 B
Nix
34 lines
537 B
Nix
|
{
|
||
|
lib,
|
||
|
mkDerivation,
|
||
|
cmake,
|
||
|
extra-cmake-modules,
|
||
|
kconfig,
|
||
|
kcoreaddons,
|
||
|
ki18n,
|
||
|
mauikit,
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
pname = "mauikit-terminal";
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
extra-cmake-modules
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
kconfig
|
||
|
kcoreaddons
|
||
|
ki18n
|
||
|
mauikit
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://invent.kde.org/maui/mauikit-terminal";
|
||
|
description = "Terminal support components for Maui applications";
|
||
|
license = licenses.gpl2Plus;
|
||
|
maintainers = with maintainers; [ dotlambda ];
|
||
|
};
|
||
|
}
|