about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/skanlite.nix
blob: e31c775c3d8649057ce189e980729ea24bb669ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  mkDerivation, lib,
  wrapGAppsHook,
  extra-cmake-modules, kdoctools,
  kio, libksane
}:

mkDerivation {
  pname = "skanlite";
  meta = with lib; {
    description = "KDE simple image scanning application";
    homepage    = "https://apps.kde.org/skanlite";
    license     = licenses.gpl2Plus;
    maintainers = with maintainers; [ polendri ];
  };

  nativeBuildInputs = [ wrapGAppsHook extra-cmake-modules kdoctools ];
  buildInputs = [ kio libksane ];
}