about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/skanpage.nix
blob: 89094a10a87b3278033c569f1ce262fe6879b1eb (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
{ lib
, mkDerivation
, extra-cmake-modules
, kirigami2
, ktextwidgets
, libksane
, qtquickcontrols2
, kpurpose
, kquickimageedit
}:

mkDerivation {
  pname = "skanpage";

  nativeBuildInputs = [ extra-cmake-modules ];

  buildInputs = [
    kirigami2
    ktextwidgets
    libksane
    qtquickcontrols2
    kpurpose
    kquickimageedit
  ];

  meta = with lib; {
    description = "KDE utility to scan images and multi-page documents";
    mainProgram = "skanpage";
    homepage = "https://apps.kde.org/skanpage";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
  };
}