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