nixpkgs/pkgs/misc/busybox/default.nix
Lluís Batlle i Rossell 5b7f1ef09a Making busybox cross build with kernel 2.4 for mipsel (I had to disable 'ionice', which
requires some headers >= 2.6.12).

I also add the kernel 2.4 headers expression I forgot in my last commit.

svn path=/nixpkgs/trunk/; revision=20540
2010-03-10 21:32:35 +00:00

34 lines
912 B
Nix

{stdenv, fetchurl, enableStatic ? false}:
let
basicConfigure = ''
make defconfig
sed -i 's,.*CONFIG_PREFIX.*,CONFIG_PREFIX="'$out'",' .config
sed -i 's,.*CONFIG_INSTALL_NO_USR.*,CONFIG_INSTALL_NO_USR=y,' .config
'' +
(if enableStatic then ''
sed -i 's,.*CONFIG_STATIC.*,CONFIG_STATIC=y,' .config
'' else "");
in
stdenv.mkDerivation {
name = "busybox-1.16.0";
src = fetchurl {
url = http://busybox.net/downloads/busybox-1.16.0.tar.bz2;
sha256 = "1n738zk01yi2sjrx2y36hpzxbslas8b91vzykcifr0p1j7ym0lim";
};
configurePhase = basicConfigure;
crossAttrs = {
configurePhase = basicConfigure + ''
sed -i 's,.*CONFIG_CROSS_COMPILER_PREFIX.*,CONFIG_CROSS_COMPILER_PREFIX="'$crossConfig-'",' .config
'' +
(if (stdenv.cross.platform.kernelMajor == "2.4") then ''
sed -i 's,.*CONFIG_IONICE.*,CONFIG_IONICE=n,' .config
'' else "");
};
}