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