2
0
Fork 0

cleanup deduplicate vbox target

This commit is contained in:
Ehmry - 2020-05-25 20:19:18 +05:30
parent 968e95e892
commit 6a13805863
1 changed files with 10 additions and 11 deletions

View File

@ -1,5 +1,12 @@
{ buildPackages, ports }:
with ports; {
with ports;
let
vbox5' = {
nativeBuildInputs = with buildPackages; [ iasl yasm ];
patches = [ ./vbox-framebuffer-fail-on-fail.patch ./vbox-debug.patch ];
portInputs = [ libc libiconv qemu-usb stdcxx virtualbox5 ];
};
in {
gpt_write.portInputs = [ jitterentropy ];
@ -47,17 +54,9 @@ with ports; {
usb_drv.portInputs = [ dde_linux ];
vbox5 = {
nativeBuildInputs = with buildPackages; [ iasl yasm ];
patches = [ ./vbox-framebuffer-fail-on-fail.patch ./vbox-debug.patch ];
portInputs = [ libc libiconv qemu-usb stdcxx virtualbox5 ];
};
vbox5 = vbox5';
vbox5-nova = {
nativeBuildInputs = with buildPackages; [ iasl yasm ];
patches = [ ./vbox5-iasl.patch ./vbox-framebuffer-fail-on-fail.patch ];
portInputs = [ libc libiconv qemu-usb stdcxx virtualbox5 ];
};
vbox5-nova = vbox5';
vesa_drv.portInputs = [ libc x86emu ];