4fa4ab3a6e
First, pass in `self' again so that overriding works properly (thanks for pointing that out, @edolstra) Second, instead of having linuxPackages*.kernel mean something different inside the set and out, add a new attribute linuxPackages*.kernelDev, which for the generic kernel is simply linuxPackages*.kernel but for the manual-config kernel is the `dev' output (which has the build tree, source tree, etc.) The second change required trivial modifications in a bunch of expressions, I verified that all of the linuxPackages* sets defined in all-packages.nix have the same drv paths before and after the change. Signed-off-by: Shea Levy <shea@shealevy.com>
33 lines
863 B
Nix
33 lines
863 B
Nix
{stdenv, fetchurl, klibc, kernelDev, withKlibc ? true}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "v86d-${version}-${kernelDev.version}";
|
|
version = "0.1.10";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gentoo/distfiles//v86d-${version}.tar.bz2";
|
|
sha256 = "0p3kwqjis941pns9948dxfnjnl5lwd8f2b6x794whs7g32p68jb3";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional withKlibc klibc;
|
|
|
|
configurePhase = ''
|
|
bash ./configure $configureFlags
|
|
'';
|
|
|
|
configureFlags = if withKlibc then [ "--with-klibc" ] else [ "--default" ];
|
|
|
|
makeFlags = [
|
|
"KDIR=${kernelDev}/lib/modules/${kernelDev.modDirVersion}/source"
|
|
"DESTDIR=$(out)"
|
|
];
|
|
|
|
meta = {
|
|
description = "A userspace helper that runs x86 code in an emulated environment";
|
|
homepage = http://dev.gentoo.org/~spock/projects/uvesafb/;
|
|
license = "BSD";
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|
|
|