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
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
applications
/
maui
/
mauikit-filebrowsing.nix
blob
d8be881f764968ce3039386df520d04677901c8f
1
{ lib
2
, mkDerivation
3
, cmake
4
, extra-cmake-modules
5
, kconfig
6
, kio
7
, mauikit
8
}:
9
10
mkDerivation {
11
pname = "mauikit-filebrowsing";
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-filebrowsing";
26
description = "MauiKit File Browsing utilities and controls";
27
license = licenses.lgpl21Plus;
28
maintainers = with maintainers; [ dotlambda ];
29
};
30
}