repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
skanpage.nix
blob
fc16723ce4de40e6bc6249abb31985c53e41ec21
1
{ lib
2
, mkDerivation
3
, extra-cmake-modules
4
, kirigami2
5
, ktextwidgets
6
, libksane
7
, qtquickcontrols2
8
, kpurpose
9
, kquickimageedit
10
}:
11
12
mkDerivation {
13
pname = "skanpage";
14
15
nativeBuildInputs = [ extra-cmake-modules ];
16
17
buildInputs = [
18
kirigami2
19
ktextwidgets
20
libksane
21
qtquickcontrols2
22
kpurpose
23
kquickimageedit
24
];
25
26
meta = with lib; {
27
description = "KDE utility to scan images and multi-page documents";
28
homepage = "https://apps.kde.org/skanpage";
29
license = licenses.gpl2Plus;
30
platforms = platforms.linux;
31
};
32
}