769c44da98
- Hack to make it work with the latest host kernel headers (2.6.18.1). - Don't call depmod impurily, rather use oldskool modutils. - modutils: use the final version, and use GCC 3.4 to compile it (4.1 doesn't work). svn path=/nixpkgs/trunk/; revision=6908
11 lines
280 B
Nix
11 lines
280 B
Nix
{stdenv, fetchurl, bison, flex}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "modutils-2.4.27";
|
|
src = fetchurl {
|
|
url = http://www.kernel.org/pub/linux/utils/kernel/modutils/v2.4/modutils-2.4.27.tar.bz2;
|
|
md5 = "bac989c74ed10f3bf86177fc5b4b89b6";
|
|
};
|
|
buildInputs = [bison flex];
|
|
}
|