nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 mkDerivation,
4 cmake,
5 extra-cmake-modules,
6 kconfig,
7 kio,
8 mauikit,
9 syntax-highlighting,
10}:
11
12mkDerivation {
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}