mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
3759e4ac86
new dependency of libksane
15 lines
324 B
Nix
15 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 ];
|
|
};
|
|
}
|