27 lines
455 B
Nix
27 lines
455 B
Nix
{
|
|
lib,
|
|
mkDerivation,
|
|
cmake,
|
|
extra-cmake-modules,
|
|
qtsystems,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "mauiman";
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
qtsystems
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://invent.kde.org/maui/mauiman";
|
|
description = "Maui Manager Library. Server and public library API";
|
|
mainProgram = "MauiManServer3";
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|