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-terminal.nix
blob
2f292ba2d0a1af3b73f46db556bd40d10ced47a5
1
{ lib
2
, mkDerivation
3
, cmake
4
, extra-cmake-modules
5
, kconfig
6
, kcoreaddons
7
, ki18n
8
, mauikit
9
}:
10
11
mkDerivation {
12
pname = "mauikit-terminal";
13
14
nativeBuildInputs = [
15
cmake
16
extra-cmake-modules
17
];
18
19
buildInputs = [
20
kconfig
21
kcoreaddons
22
ki18n
23
mauikit
24
];
25
26
meta = with lib; {
27
homepage = "https://invent.kde.org/maui/mauikit-terminal";
28
description = "Terminal support components for Maui applications";
29
license = licenses.gpl2Plus;
30
maintainers = with maintainers; [ dotlambda ];
31
};
32
}