321e4da7e8
svn path=/nixpkgs/trunk/; revision=4646
14 lines
354 B
Nix
14 lines
354 B
Nix
{stdenv, fetchurl, hotplugSupport ? false}:
|
|
|
|
assert hotplugSupport -> stdenv.system == "i686-linux";
|
|
|
|
stdenv.mkDerivation {
|
|
name = "sane-backends-1.0.17";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/sane-backends-1.0.17.tar.gz;
|
|
md5 = "b51c10da8a81a04e1bae88c9e6556df2";
|
|
};
|
|
inherit hotplugSupport;
|
|
}
|