v86d
svn path=/nixpkgs/trunk/; revision=30011
This commit is contained in:
parent
a5324f2132
commit
c7b6e96d84
32
pkgs/os-specific/linux/v86d/default.nix
Normal file
32
pkgs/os-specific/linux/v86d/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{stdenv, fetchurl, klibc, kernel, withKlibc ? true}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "v86d-0.1.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dev.gentoo.org/~spock/projects/uvesafb/archive/${name}.tar.bz2";
|
||||
sha256 = "0p3kwqjis941pns9948dxfnjnl5lwd8f2b6x794whs7g32p68jb3";
|
||||
};
|
||||
|
||||
buildInputs = stdenv.lib.optional withKlibc klibc;
|
||||
|
||||
configurePhase = ''
|
||||
bash ./configure $configureFlags
|
||||
'';
|
||||
|
||||
configureFlags = if withKlibc then [ "--with-klibc" ] else [ "--default" ];
|
||||
|
||||
makeFlags = [
|
||||
"KDIR=${kernel}/lib/modules/${kernel.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";
|
||||
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||
};
|
||||
}
|
||||
|
@ -5775,6 +5775,8 @@ let
|
||||
inherit (gnome) gtkmm libglademm;
|
||||
};
|
||||
|
||||
v86d = callPackage ../os-specific/linux/v86d { };
|
||||
|
||||
virtualbox = callPackage ../applications/virtualization/virtualbox {
|
||||
stdenv = stdenv_32bit;
|
||||
inherit (gnome) libIDL;
|
||||
|
Loading…
Reference in New Issue
Block a user