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
libfmvoice: 0-unstable-2024-11-08 -> 0-unstable-2024-12-11 (#364919)
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
libksane.nix
blob
241a9e284b86e36aece28e7281114d47bab56587
1
{
2
mkDerivation,
3
lib,
4
extra-cmake-modules,
5
qtbase,
6
ki18n,
7
ktextwidgets,
8
kwallet,
9
kwidgetsaddons,
10
ksanecore,
11
sane-backends,
12
}:
13
14
mkDerivation {
15
pname = "libksane";
16
meta = with lib; {
17
license = licenses.gpl2;
18
maintainers = with maintainers; [ polendri ];
19
};
20
nativeBuildInputs = [ extra-cmake-modules ];
21
buildInputs = [
22
qtbase
23
ki18n
24
ktextwidgets
25
kwallet
26
kwidgetsaddons
27
];
28
propagatedBuildInputs = [
29
ksanecore
30
sane-backends
31
];
32
}