Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / maui / mauikit-texteditor.nix
blob75826c2079ac0dccb20cc157ce74fb00d765d108
1 { lib
2 , mkDerivation
3 , cmake
4 , extra-cmake-modules
5 , kconfig
6 , kio
7 , mauikit
8 , syntax-highlighting
9 }:
11 mkDerivation {
12   pname = "mauikit-texteditor";
14   nativeBuildInputs = [
15     cmake
16     extra-cmake-modules
17   ];
19   buildInputs = [
20     kconfig
21     kio
22     mauikit
23     syntax-highlighting
24   ];
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   };