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
/
ksanecore.nix
blob
4ba18ffca1dff27384f247eeb58963551f3c2c45
1
{
2
mkDerivation, lib,
3
extra-cmake-modules, qtbase,
4
ki18n, sane-backends
5
}:
6
7
mkDerivation {
8
pname = "ksanecore";
9
nativeBuildInputs = [ extra-cmake-modules ];
10
buildInputs = [ qtbase ki18n sane-backends ];
11
meta = with lib; {
12
license = licenses.gpl2;
13
maintainers = with maintainers; [ andrevmatos ];
14
};
15
}