nixpkgs/pkgs/applications/kde/skanpage.nix

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

33 lines
556 B
Nix
Raw Normal View History

2022-02-24 16:57:11 +00:00
{ lib
, mkDerivation
, extra-cmake-modules
, kirigami2
, ktextwidgets
, libksane
, qtquickcontrols2
2022-04-21 19:36:44 +00:00
, kpurpose
2023-08-24 10:59:41 +00:00
, kquickimageedit
2022-02-24 16:57:11 +00:00
}:
2023-08-24 10:59:41 +00:00
mkDerivation {
2022-02-24 16:57:11 +00:00
pname = "skanpage";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
kirigami2
ktextwidgets
libksane
qtquickcontrols2
2022-04-21 19:36:44 +00:00
kpurpose
2023-08-24 10:59:41 +00:00
kquickimageedit
2022-02-24 16:57:11 +00:00
];
meta = with lib; {
description = "KDE utility to scan images and multi-page documents";
homepage = "https://apps.kde.org/skanpage";
license = licenses.gpl2Plus;
platforms = platforms.linux;
};
}