summary refs log tree commit diff
path: root/pkgs/os-specific/linux/qc-usb/default.nix
blob: 92bb10689418c56a564de260d664cc9d6df5120c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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];
}