f6e4235c6b
the module and install it under $out/lib/modules/$kernelversion/ ... Eventually we will make tons of symlinks from /lib/modules/$kernelversion to this location, so we can safely run tools like depmod and friends. I believe this is the least ugly hack to make it work. svn path=/nixpkgs/trunk/; revision=4486
13 lines
308 B
Nix
13 lines
308 B
Nix
{stdenv, fetchurl, kernel}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ov511-2.30";
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://alpha.dyndns.org/ov511/download/2.xx/distros/ov511-2.30.tar.bz2;
|
|
md5 = "9eacf9e54f2f54a59ddbf14221a53f2a";
|
|
};
|
|
patches = [./ov511-kernel.patch];
|
|
inherit kernel;
|
|
}
|