nixpkgs/pkgs/applications/maui/mauiman.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
448 B
Nix
Raw Normal View History

{ 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 ];
};
}