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
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
applications
/
maui
/
mauikit-accounts.nix
blob
24308b76248311109748f4f717487377ff7b697b
1
{ lib
2
, mkDerivation
3
, cmake
4
, extra-cmake-modules
5
, kconfig
6
, kio
7
, mauikit
8
}:
9
10
mkDerivation {
11
pname = "mauikit-accounts";
12
13
nativeBuildInputs = [
14
cmake
15
extra-cmake-modules
16
];
17
18
buildInputs = [
19
kconfig
20
kio
21
mauikit
22
];
23
24
meta = with lib; {
25
homepage = "https://invent.kde.org/maui/mauikit-accounts";
26
description = "MauiKit utilities to handle User Accounts";
27
license = licenses.lgpl21Plus;
28
maintainers = with maintainers; [ onny ];
29
};
30
}