nixpkgs/pkgs/os-specific/linux/ov511/default.nix
Armijn Hemel 95dd22417c prevent the kernel modules to link with the glibc headers. This is very very
tricky. D'oh!!!

svn path=/nixpkgs/trunk/; revision=5720
2006-07-16 20:05:23 +00:00

13 lines
330 B
Nix

{stdenv, fetchurl, kernel}:
stdenv.mkDerivation {
name = "ov511-2.32";
builder = ./builder.sh;
src = fetchurl {
url = http://www.ovcam.org/ov511/download/2.xx/distros/ov511-2.32.tar.bz2;
md5 = "6a08025311649356242761641a1df0f2";
};
patches = [./ov511-kernel.patch];
inherit kernel;
NIX_GLIBC_FLAGS_SET=1;
}