diff options
author | Andy Wingo <wingo@igalia.com> | 2015-08-06 12:26:44 +0200 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2015-08-08 14:09:56 -0400 |
commit | 0abe1d86f5e0db3b558c6dcb11d22a60c88c64bc (patch) | |
tree | 33999ac03ed7e6ab64ae61030638e1fab2020c3e /gnu/packages/gnome.scm | |
parent | 7c88b6bd5c631708d9ee504af873d68fa5f1e280 (diff) | |
download | guix-0abe1d86f5e0db3b558c6dcb11d22a60c88c64bc.tar guix-0abe1d86f5e0db3b558c6dcb11d22a60c88c64bc.tar.gz |
gnu: Add simple-scan.
* gnu/packages/gnome.scm (simple-scan): New variable.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index ebf1383d92..b97c9ff83f 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3207,3 +3207,41 @@ asynchronous control, bulk and interrupt transfers with proper cancellation and integration into a mainloop. This makes it easy to integrate low level USB transfers with your high-level application or system daemon.") (license license:lgpl2.1+))) + +(define-public simple-scan + (package + (name "simple-scan") + (version "3.17.4") + (source (origin + (method url-fetch) + (uri (string-append "https://launchpad.net/simple-scan/" + (version-major+minor version) "/" + version "/+download/simple-scan-" + version ".tar.xz")) + (sha256 + (base32 + "1pslbv45g01g039zj2b01k08f763kkhzqw8wwz7yh27m7bjllnx6")))) + (build-system glib-or-gtk-build-system) + (inputs + `(("gtk" ,gtk+) + ("zlib" ,zlib) + ("cairo" ,cairo) + ("gdk-pixbuf" ,gdk-pixbuf) + ("gusb" ,gusb) + ("libgudev" ,libgudev) + ("libsane" ,sane-backends))) + (native-inputs + `(("intltool" ,intltool) + ("itstool" ,itstool) + ("colord" ,colord) + ("glib" ,glib "bin") ; glib-compile-schemas, etc. + ("pkg-config" ,pkg-config) + ("vala" ,vala))) + (home-page "https://launchpad.net/simple-scan") + (synopsis "Document and image scanner") + (description "Simple Scan is an easy-to-use application, designed to let +users connect their scanner and quickly have the image/document in an +appropriate format. Simple Scan is 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.") + (license license:gpl3+))) |