2
0
Fork 0
genodepkgs/packages/genodelabs/make-targets.nix

23 lines
436 B
Nix

# This file contains overrides necessary to build some Make targets.
{ buildPackages, genodePackages, ports }:
{
ping.targets = [ "app/ping" ];
nic_dump.targets = [ "server/nic_dump" ];
test-pci = {
targets = [ "test/pci" ];
patches = [ ./patches/test-pci.patch ];
};
test-rtc.targets = [ "test/rtc" ];
test-vmm_x86 = {
targets = [ "test/vmm_x86" ];
patches = [ ./patches/test-vmm_x86.patch ];
};
}