about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/maui/mauikit-documents.nix
blob: 19d8e9faa2072e30bd55484cce9e13505ad24aad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, karchive
, kconfig
, kcoreaddons
, kfilemetadata
, kguiaddons
, ki18n
, kiconthemes
, kio
, mauikit
, poppler
}:

mkDerivation {
  pname = "mauikit-documents";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    karchive
    kconfig
    kcoreaddons
    kfilemetadata
    kguiaddons
    ki18n
    kiconthemes
    kio
    mauikit
    poppler
  ];

  meta = {
    homepage = "https://invent.kde.org/maui/mauikit-documents";
    description = "MauiKit QtQuick plugins for text editing";
    license = with lib.licenses; [ bsd2 lgpl21Plus ];
    maintainers = with lib.maintainers; [ dotlambda ];
  };
}