3759e4ac86
new dependency of libksane
18 lines
449 B
Nix
18 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 ];
|
|
}
|