f38d827007
svn path=/nixpkgs/trunk/; revision=5723
14 lines
345 B
Nix
14 lines
345 B
Nix
{stdenv, fetchurl, kernel, gawk}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "qc-usb-0.6.4";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://heanet.dl.sourceforge.net/sourceforge/qce-ga/qc-usb-0.6.4.tar.gz;
|
|
md5 = "7e91c3a633382c99100e3ef4f1d9f50a";
|
|
};
|
|
inherit kernel;
|
|
buildInputs = [gawk];
|
|
patches = [./quickcam-install.patch];
|
|
}
|