repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
swapspace: 1.18 -> 1.18.1
[NixPkgs.git]
/
pkgs
/
applications
/
maui
/
mauiman.nix
blob
7566c7d6ed7d01ae57149221a616b6eccd324b67
1
{ lib
2
, mkDerivation
3
, cmake
4
, extra-cmake-modules
5
, qtsystems
6
}:
7
8
mkDerivation {
9
pname = "mauiman";
10
11
nativeBuildInputs = [
12
cmake
13
extra-cmake-modules
14
];
15
16
buildInputs = [
17
qtsystems
18
];
19
20
meta = with lib; {
21
homepage = "https://invent.kde.org/maui/mauiman";
22
description = "Maui Manager Library. Server and public library API";
23
mainProgram = "MauiManServer3";
24
maintainers = with maintainers; [ dotlambda ];
25
};
26
}