diff --git a/abstract-machine/default.nix b/abstract-machine/default.nix index 85232e0..b452cdb 100644 --- a/abstract-machine/default.nix +++ b/abstract-machine/default.nix @@ -25,6 +25,9 @@ stdenv.mkDerivation { buildInputs = [ + ] ++ (if isa == "native" then [ SDL2 ] else [ ]); + propagatedBuildInputs = [ + ] ++ (if isa == "native" then [ SDL2 ] else [ ]); doCheck = true;