mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
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 ];
|
|
}
|