Genode Packages collection
https://git.sr.ht/~ehmry/genodepkgs/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
357 B
15 lines
357 B
# SPDX-License-Identifier: CC0-1.0 |
|
|
|
{ pkgs, ... }: { |
|
name = "x86"; |
|
constraints = builtins.any (spec: spec == "x86"); |
|
machine = { |
|
config = ./x86.dhall; |
|
inputs = (map pkgs.genodeSources.depot [ |
|
"acpi_drv" |
|
"platform_drv" |
|
"report_rom" |
|
"test-signal" |
|
]) ++ (map pkgs.genodeSources.make [ "test/pci" "test/rtc" ]); |
|
}; |
|
}
|
|
|