1fc6ce85c4
is and needs more investigation) svn path=/nixpkgs/trunk/; revision=5726
14 lines
373 B
Nix
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;
|
|
}
|