nixpkgs/pkgs/misc/sane-backends/default.nix
Armijn Hemel 4dca405b3d 1.0.17 -> 1.0.18
hotplug -> udev

svn path=/nixpkgs/trunk/; revision=6001
2006-07-31 13:29:02 +00:00

14 lines
383 B
Nix

{stdenv, fetchurl, hotplugSupport ? false}:
assert hotplugSupport -> stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "sane-backends-1.0.18";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.sane-project.org/pub/sane/sane-backends-1.0.18/sane-backends-1.0.18.tar.gz;
md5 = "7ca7e2908e24721471de92cf40c75e60";
};
udevSupport = hotplugSupport;
}