3759e4ac86
new dependency of libksane
16 lines
324 B
Nix
16 lines
324 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, qtbase,
|
|
ki18n, sane-backends
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "ksanecore";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtbase ki18n sane-backends ];
|
|
meta = with lib; {
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ andrevmatos ];
|
|
};
|
|
}
|