skanpage: Init at 1.0.0
This commit is contained in:
parent
02cfe6827a
commit
7e5b5d0ff7
36
pkgs/applications/graphics/skanpage/default.nix
Normal file
36
pkgs/applications/graphics/skanpage/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, mkDerivation
|
||||
, fetchurl
|
||||
, extra-cmake-modules
|
||||
, kirigami2
|
||||
, ktextwidgets
|
||||
, libksane
|
||||
, qtquickcontrols2
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "skanpage";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/skanpage/${version}/${pname}-${version}.tar.xz";
|
||||
hash = "sha256-kPVAG64oPkKF3ztHB4V7M2xc1AcvwiHnYpMMLMQNYGA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ extra-cmake-modules ];
|
||||
|
||||
buildInputs = [
|
||||
kirigami2
|
||||
ktextwidgets
|
||||
libksane
|
||||
qtquickcontrols2
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "KDE utility to scan images and multi-page documents";
|
||||
homepage = "https://apps.kde.org/skanpage";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ samuelgrf ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -28912,6 +28912,8 @@ with pkgs;
|
||||
|
||||
sipp = callPackage ../development/tools/misc/sipp { };
|
||||
|
||||
skanpage = libsForQt5.callPackage ../applications/graphics/skanpage { };
|
||||
|
||||
soci = callPackage ../development/libraries/soci { };
|
||||
|
||||
socialscan = with python3.pkgs; toPythonApplication socialscan;
|
||||
|
Loading…
Reference in New Issue
Block a user