nixpkgs/pkgs/applications/graphics/sane/xsane.nix

34 lines
973 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, sane-backends, sane-frontends, libX11, gtk2, pkg-config, libpng
2020-04-28 03:29:39 +00:00
, libusb-compat-0_1 ? null
2017-12-22 07:59:08 +00:00
, gimpSupport ? false, gimp ? null
}:
2017-12-22 07:59:08 +00:00
assert gimpSupport -> gimp != null;
stdenv.mkDerivation rec {
2013-12-20 22:15:26 +00:00
name = "xsane-0.999";
src = fetchurl {
url = "http://www.xsane.org/download/${name}.tar.gz";
2013-12-20 22:15:26 +00:00
sha256 = "0jrb918sfb9jw3vmrz0z7np4q55hgsqqffpixs0ir5nwcwzd50jp";
};
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 .
'';
nativeBuildInputs = [ pkg-config ];
buildInputs = [libpng sane-backends sane-frontends libX11 gtk2 ]
2020-04-28 03:29:39 +00:00
++ (if libusb-compat-0_1 != null then [libusb-compat-0_1] else [])
2021-01-15 13:21:58 +00:00
++ lib.optional gimpSupport gimp;
meta = {
homepage = "http://www.sane-project.org/";
description = "Graphical scanning frontend for sane";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [peti];
platforms = with lib.platforms; linux;
};
}