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

21 lines
375 B
Nix
Raw Normal View History

2020-11-06 20:59:33 +01:00
# This file contains overrides necessary to build some Make targets.
{ buildPackages, genodePackages, ports }:
{
ping.targets = [ "app/ping" ];
test-pci = {
targets = [ "test/pci" ];
patches = [ ./test-pci.patch ];
};
test-rtc.targets = [ "test/rtc" ];
test-vmm_x86 = {
targets = [ "test/vmm_x86" ];
patches = [ ./test-vmm_x86.patch ];
};
}