about summary refs log tree commit diff
path: root/pkgs/applications/graphics/sane/xsane.nix
blob: 8febb819bb3b8863dda22c6f5f011cfdde2c7ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ lib
, stdenv
, fetchurl
, sane-backends
, sane-frontends
, libX11
, gtk2
, pkg-config
, libpng
, libusb-compat-0_1 ? null
, gimpSupport ? false
, gimp ? null
}:

assert gimpSupport -> gimp != null;

stdenv.mkDerivation rec {
  pname = "xsane";
  version = "0.999";

  src = fetchurl {
    url = "http://www.xsane.org/download/xsane-${version}.tar.gz";
    sha256 = "0jrb918sfb9jw3vmrz0z7np4q55hgsqqffpixs0ir5nwcwzd50jp";
  };

  preConfigure = ''
    sed -e '/SANE_CAP_ALWAYS_SETTABLE/d' -i src/xsane-back-gtk.c
    chmod a+rX -R .
  '';

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libpng sane-backends sane-frontends libX11 gtk2 ]
    ++ (if libusb-compat-0_1 != null then [ libusb-compat-0_1 ] else [ ])
    ++ lib.optional gimpSupport gimp;

  meta = {
    homepage = "http://www.sane-project.org/";
    description = "Graphical scanning frontend for sane";
    license = lib.licenses.gpl2Plus;
    platforms = with lib.platforms; linux;
  };
}