mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
19 lines
462 B
Nix
19 lines
462 B
Nix
{
|
|
mkDerivation, lib,
|
|
wrapGAppsHook,
|
|
extra-cmake-modules, kdoctools,
|
|
kio, libksane
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "skanlite";
|
|
meta = with lib; {
|
|
description = "KDE simple image scanning application";
|
|
homepage = "https://apps.kde.org/skanlite";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ polendri ];
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook extra-cmake-modules kdoctools ];
|
|
buildInputs = [ kio libksane ];
|
|
}
|