nixpkgs/pkgs/os-specific/linux/ov511/default.nix
Armijn Hemel 1fc6ce85c4 compile with the right kernel, mark the compilation as b0rken (because it
is and needs more investigation)

svn path=/nixpkgs/trunk/; revision=5726
2006-07-17 07:49:17 +00:00

14 lines
373 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 ./ov511-2.32.patch ./ov511-2.32-kdir.patch];
inherit kernel;
NIX_GLIBC_FLAGS_SET=1;
}