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