about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/maui/mauiman.nix
blob: 7566c7d6ed7d01ae57149221a616b6eccd324b67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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 ];
  };
}