nixpkgs/pkgs/os-specific/linux/qc-usb/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

14 lines
327 B
Nix

{stdenv, fetchurl, kernel, gawk}:
stdenv.mkDerivation {
name = "qc-usb-0.6.4";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/qc-usb-0.6.4.tar.gz;
md5 = "7e91c3a633382c99100e3ef4f1d9f50a";
};
inherit kernel;
buildInputs = [gawk];
patches = [./quickcam-install.patch];
}