2016-01-05 22:37:45 +03:00
|
|
|
{ stdenv, fetchurl, sane-backends, sane-frontends, libX11, gtk, pkgconfig, libpng
|
2013-11-09 15:32:30 +04:00
|
|
|
, libusb ? null
|
|
|
|
, gimpSupport ? false, gimp_2_8 ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert gimpSupport -> gimp_2_8 != null;
|
2012-11-26 19:17:31 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-21 02:15:26 +04:00
|
|
|
name = "xsane-0.999";
|
2007-08-09 00:33:36 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-11-26 19:17:31 +04:00
|
|
|
url = "http://www.xsane.org/download/${name}.tar.gz";
|
2013-12-21 02:15:26 +04:00
|
|
|
sha256 = "0jrb918sfb9jw3vmrz0z7np4q55hgsqqffpixs0ir5nwcwzd50jp";
|
2007-08-09 00:33:36 +04:00
|
|
|
};
|
|
|
|
|
2010-01-15 11:59:45 +03:00
|
|
|
preConfigure = ''
|
|
|
|
sed -e '/SANE_CAP_ALWAYS_SETTABLE/d' -i src/xsane-back-gtk.c
|
2014-11-16 11:28:14 +03:00
|
|
|
chmod a+rX -R .
|
2010-01-15 11:59:45 +03:00
|
|
|
'';
|
|
|
|
|
2016-01-05 22:37:45 +03:00
|
|
|
buildInputs = [libpng sane-backends sane-frontends libX11 gtk pkgconfig ]
|
2013-11-09 15:32:30 +04:00
|
|
|
++ (if libusb != null then [libusb] else [])
|
|
|
|
++ stdenv.lib.optional gimpSupport gimp_2_8;
|
2010-09-28 09:39:39 +04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.sane-project.org/;
|
2012-03-08 02:20:23 +04:00
|
|
|
description = "Graphical scanning frontend for sane";
|
2014-06-19 08:19:00 +04:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2012-11-26 19:17:31 +04:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric simons];
|
2012-03-08 02:20:23 +04:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2010-09-28 09:39:39 +04:00
|
|
|
};
|
2007-08-09 00:33:36 +04:00
|
|
|
}
|