mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
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 ];
|
||
|
};
|
||
|
}
|