nixpkgs/pkgs/applications/kde/skanlite.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
494 B
Nix
Raw Normal View History

2022-02-25 13:21:47 +00:00
{
mkDerivation, lib,
wrapGAppsHook3,
2022-02-25 13:21:47 +00:00
extra-cmake-modules, kdoctools,
kio, libksane
}:
mkDerivation {
pname = "skanlite";
meta = with lib; {
description = "KDE simple image scanning application";
mainProgram = "skanlite";
2022-02-25 13:21:47 +00:00
homepage = "https://apps.kde.org/skanlite";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ polendri ];
};
nativeBuildInputs = [ wrapGAppsHook3 extra-cmake-modules kdoctools ];
2022-02-25 13:21:47 +00:00
buildInputs = [ kio libksane ];
}