2006-01-31 14:01:58 +01:00
|
|
|
{stdenv, fetchurl, hotplugSupport ? false}:
|
2006-01-30 16:29:26 +01:00
|
|
|
|
|
|
|
assert hotplugSupport -> stdenv.system == "i686-linux";
|
2005-11-03 18:20:38 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-07-31 15:29:02 +02:00
|
|
|
name = "sane-backends-1.0.18";
|
2006-01-30 16:29:26 +01:00
|
|
|
builder = ./builder.sh;
|
2005-11-03 18:20:38 +01:00
|
|
|
src = fetchurl {
|
2006-07-31 15:29:02 +02:00
|
|
|
url = ftp://ftp.sane-project.org/pub/sane/sane-backends-1.0.18/sane-backends-1.0.18.tar.gz;
|
|
|
|
md5 = "7ca7e2908e24721471de92cf40c75e60";
|
2005-11-03 18:20:38 +01:00
|
|
|
};
|
2006-07-31 15:29:02 +02:00
|
|
|
udevSupport = hotplugSupport;
|
2005-11-03 18:20:38 +01:00
|
|
|
}
|