nixpkgs/pkgs/os-specific/linux/qc-usb/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

13 lines
297 B
Nix

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