Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
17 lines
449 B
Nix
17 lines
449 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, qtbase,
|
|
ki18n, ktextwidgets, kwallet, kwidgetsaddons,
|
|
ksanecore, sane-backends
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "libksane";
|
|
meta = with lib; {
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ polendri ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtbase ki18n ktextwidgets kwallet kwidgetsaddons ];
|
|
propagatedBuildInputs = [ ksanecore sane-backends ];
|
|
}
|