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-texteditor.nix
blob
75826c2079ac0dccb20cc157ce74fb00d765d108
1
{ lib
2
, mkDerivation
3
, cmake
4
, extra-cmake-modules
5
, kconfig
6
, kio
7
, mauikit
8
, syntax-highlighting
9
}:
10
11
mkDerivation {
12
pname = "mauikit-texteditor";
13
14
nativeBuildInputs = [
15
cmake
16
extra-cmake-modules
17
];
18
19
buildInputs = [
20
kconfig
21
kio
22
mauikit
23
syntax-highlighting
24
];
25
26
meta = with lib; {
27
homepage = "https://invent.kde.org/maui/mauikit-texteditor";
28
description = "MauiKit Text Editor components";
29
license = licenses.lgpl21Plus;
30
maintainers = with maintainers; [ onny ];
31
};
32
}