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