summaryrefslogtreecommitdiffstats
path: root/REPORTING-BUGS
AgeCommit message (Expand)Author
2009-08-18REPORTING-BUGS: add get_maintainer.pl blurbJoe Perches
2008-02-07REPORTING-BUGS: cc the mailing list tooJ. Bruce Fields
2006-12-07[PATCH] REPORTING-BUGS: request .config fileRandy Dunlap
2005-09-10[PATCH] Spelling and whitespace fixes for REPORTING-BUGSTobias Klauser
2005-08-05[PATCH] REPORTING-BUGS: track regressionsAndrew Morton
2005-04-16Linux-2.6.12-rc2Linus Torvalds
applications/graphics/sane/xsane.nix?h=fix-node-exporter-backslash-in-exec-tmp&id=b8ffa68b3582f412c580765392f2ec5a8d2eb1f5'>treecommitdiffstats
path: root/pkgs/applications/graphics/sane/xsane.nix
blob: 1deaab4dfe538330daa071f456c8a52d4f17e75d (plain)
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
{ 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 {
  name = "xsane-0.999";

  src = fetchurl {
    url = "http://www.xsane.org/download/${name}.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;
    maintainers = with lib.maintainers; [peti];
    platforms = with lib.platforms; linux;
  };
}