2
0
genodepkgs/tests/tox-bootstrapd.nix

19 lines
361 B
Nix
Raw Normal View History

2020-10-20 02:55:51 +02:00
{ pkgs, legacyPackages, ... }:
{
name = "tox-bootstrapd";
constraints = builtins.any (spec: spec == "x86");
machine = {
config = ./tox-bootstrapd.dhall;
2020-10-20 17:03:54 +02:00
inputs = (with pkgs; [
acpi_drv
ipxe_nic_drv
2020-10-20 20:10:59 +02:00
libc-raise
2020-10-20 17:03:54 +02:00
platform_drv
posix
report_rom
vfs_lwip
]) ++ (with legacyPackages; [ libtoxcore ]);
2020-10-20 02:55:51 +02:00
};
}