Compare commits

...

1 commit

Author SHA1 Message Date
b0b30293bf
am,build: propagate SDL to dependents
All checks were successful
Build abstract machine with nix / build-packages (abstract-machine) (push) Successful in 16s
Build abstract machine with nix / build-packages (nemu) (push) Successful in 7s
Build abstract machine with nix / build-packages (nemu-lib) (push) Successful in 7s
Build abstract machine with nix / build-packages (rv32Cross.abstract-machine) (push) Successful in 11s
Build npc tests / npc-build (flow) (push) Successful in 8s
Build npc tests / npc-build (flow-simlib) (push) Successful in 9s
2024-08-15 15:52:51 +08:00

View file

@ -27,5 +27,9 @@ stdenv.mkDerivation {
] ++ (if isa == "native" then [ SDL2 ] else [ ]);
propagetedBuildInputs = [
] ++ (if isa == "native" then [ SDL2 ] else [ ]);
doCheck = true;
}