2018-09-03 23:06:28 +01:00
|
|
|
{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, itstool, python3, wrapGAppsHook
|
2019-05-22 12:03:39 +01:00
|
|
|
, cairo, gdk-pixbuf, colord, glib, gtk3, gusb, packagekit, libwebp
|
2018-12-02 11:41:15 +00:00
|
|
|
, libxml2, sane-backends, vala, gnome3, gobject-introspection }:
|
2015-03-30 23:45:06 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "simple-scan";
|
2019-11-29 18:21:19 +00:00
|
|
|
version = "3.34.2";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnome/sources/simple-scan/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-11-29 18:21:19 +00:00
|
|
|
sha256 = "1fk3g4f9slckqfwm576jrjq1d1qihw0dlgzdf00ns7qbhzb0kxsp";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2018-09-05 01:52:30 +01:00
|
|
|
buildInputs = [
|
2019-05-22 12:03:39 +01:00
|
|
|
cairo gdk-pixbuf colord glib gnome3.adwaita-icon-theme gusb
|
2019-02-13 21:47:50 +00:00
|
|
|
gtk3 libwebp packagekit sane-backends vala
|
2018-09-05 01:52:30 +01:00
|
|
|
];
|
2017-12-13 09:41:42 +00:00
|
|
|
nativeBuildInputs = [
|
2018-09-03 23:06:28 +01:00
|
|
|
meson ninja gettext itstool pkgconfig python3 wrapGAppsHook libxml2
|
2017-12-13 09:41:42 +00:00
|
|
|
# For setup hook
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2017-12-13 09:41:42 +00:00
|
|
|
];
|
2015-08-19 20:57:18 +01:00
|
|
|
|
2017-10-04 22:50:14 +01:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs data/meson_compile_gschema.py
|
2016-05-17 05:49:28 +01:00
|
|
|
'';
|
|
|
|
|
2015-08-19 20:57:18 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2018-09-05 01:52:30 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "simple-scan";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-03-30 23:45:06 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Simple scanning utility";
|
|
|
|
longDescription = ''
|
|
|
|
A really easy way to scan both documents and photos. You can crop out the
|
|
|
|
bad parts of a photo and rotate it if it is the wrong way round. You can
|
|
|
|
print your scans, export them to pdf, or save them in a range of image
|
|
|
|
formats. Basically a frontend for SANE - which is the same backend as
|
|
|
|
XSANE uses. This means that all existing scanners will work and the
|
|
|
|
interface is well tested.
|
|
|
|
'';
|
2018-09-05 01:52:30 +01:00
|
|
|
homepage = https://gitlab.gnome.org/GNOME/simple-scan;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2018-02-25 20:24:38 +00:00
|
|
|
maintainers = gnome3.maintainers;
|
2015-09-14 09:20:16 +01:00
|
|
|
platforms = platforms.linux;
|
2015-03-30 23:45:06 +01:00
|
|
|
};
|
|
|
|
}
|