e8261201d8
some programs (such as module-init-tools) need it. * Remove module-init-tools-static, it now builds out of the box with dietlibc. svn path=/nixpkgs/trunk/; revision=6938
12 lines
324 B
Nix
12 lines
324 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "module-init-tools-3.2.2";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/module-init-tools-3.2.2.tar.bz2;
|
|
md5 = "a1ad0a09d3231673f70d631f3f5040e9";
|
|
};
|
|
patches = [./module-dir.patch];
|
|
postInstall = "rm $out/sbin/insmod.static"; # don't need it
|
|
}
|