summary refs log tree commit diff
path: root/pkgs/misc/sane-front/default.nix
blob: b79331746be69f397476277a72c23ed213afbf34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, saneBackends, libX11, gtk,
	pkgconfig, libusb ? null}:
stdenv.mkDerivation {
  name = "sane-frontend";

  src = fetchurl {
    url = ftp://ftp.sane-project.org/pub/sane/sane-frontends-1.0.14/sane-frontends-1.0.14.tar.gz;
    md5 = "c63bf7b0bb5f530cf3c08715db721cd3";
  };

  buildInputs = [saneBackends libX11 gtk pkgconfig] ++ 
	(if (libusb != null) then [libusb] else []);
}