nixpkgs/pkgs/desktops/gnome-3/core/simple-scan/default.nix

52 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, meson, ninja, pkgconfig, gettext, itstool, python3, wrapGAppsHook
2019-05-22 13:03:39 +02:00
, cairo, gdk-pixbuf, colord, glib, gtk3, gusb, packagekit, libwebp
, libxml2, sane-backends, vala, gnome3, gobject-introspection }:
2015-03-31 00:45:06 +02:00
stdenv.mkDerivation rec {
name = "simple-scan-${version}";
version = "3.32.2.1";
src = fetchurl {
url = "mirror://gnome/sources/simple-scan/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "0xqb642bsd2hddsm4bd199vyq8jcipdlxm0br3mjlc5vjcxgkxyp";
};
2018-09-05 02:52:30 +02:00
buildInputs = [
2019-05-22 13:03:39 +02:00
cairo gdk-pixbuf colord glib gnome3.adwaita-icon-theme gusb
2019-02-13 22:47:50 +01:00
gtk3 libwebp packagekit sane-backends vala
2018-09-05 02:52:30 +02:00
];
nativeBuildInputs = [
meson ninja gettext itstool pkgconfig python3 wrapGAppsHook libxml2
# For setup hook
gobject-introspection
];
2017-10-04 23:50:14 +02:00
postPatch = ''
patchShebangs data/meson_compile_gschema.py
'';
doCheck = true;
2018-09-05 02:52:30 +02:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "simple-scan";
};
};
2015-03-31 00:45:06 +02: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 02:52:30 +02:00
homepage = https://gitlab.gnome.org/GNOME/simple-scan;
license = licenses.gpl3Plus;
2018-02-25 21:24:38 +01:00
maintainers = gnome3.maintainers;
2015-09-14 10:20:16 +02:00
platforms = platforms.linux;
2015-03-31 00:45:06 +02:00
};
}