2022-11-08 20:32:29 +00:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, cmake
|
|
|
|
, extra-cmake-modules
|
2023-03-02 01:53:38 +00:00
|
|
|
, qtsystems
|
2022-11-08 20:32:29 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
|
|
|
pname = "mauiman";
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
extra-cmake-modules
|
|
|
|
];
|
|
|
|
|
2023-03-02 01:53:38 +00:00
|
|
|
buildInputs = [
|
|
|
|
qtsystems
|
|
|
|
];
|
|
|
|
|
2022-11-08 20:32:29 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://invent.kde.org/maui/mauiman";
|
|
|
|
description = "Maui Manager Library. Server and public library API";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "MauiManServer3";
|
2022-11-08 20:32:29 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|