2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchFromGitHub,
|
|
|
|
gitUpdater,
|
|
|
|
cmake,
|
|
|
|
python3,
|
|
|
|
withDynarec ? (
|
|
|
|
stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isRiscV64 || stdenv.hostPlatform.isLoongArch64
|
|
|
|
),
|
|
|
|
runCommand,
|
|
|
|
hello-x86_64,
|
2022-06-16 17:23:12 +00:00
|
|
|
}:
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
# Currently only supported on specific archs
|
|
|
|
assert
|
|
|
|
withDynarec
|
|
|
|
-> (
|
|
|
|
stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isRiscV64 || stdenv.hostPlatform.isLoongArch64
|
|
|
|
);
|
2023-02-02 18:25:31 +00:00
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2022-06-16 17:23:12 +00:00
|
|
|
pname = "box64";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "0.2.8";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ptitSeb";
|
2023-11-16 04:20:00 +00:00
|
|
|
repo = "box64";
|
|
|
|
rev = "v${finalAttrs.version}";
|
2024-06-05 15:53:02 +00:00
|
|
|
hash = "sha256-P+m+JS3THh3LWMZYW6BQ7QyNWlBuL+hMcUtUbpMHzis=";
|
2022-06-16 17:23:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
python3
|
|
|
|
];
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
cmakeFlags =
|
|
|
|
[
|
|
|
|
(lib.cmakeBool "NOGIT" true)
|
|
|
|
|
|
|
|
# Arch mega-option
|
|
|
|
(lib.cmakeBool "ARM64" stdenv.hostPlatform.isAarch64)
|
|
|
|
(lib.cmakeBool "RV64" stdenv.hostPlatform.isRiscV64)
|
|
|
|
(lib.cmakeBool "PPC64LE" (stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian))
|
|
|
|
(lib.cmakeBool "LARCH64" stdenv.hostPlatform.isLoongArch64)
|
|
|
|
]
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isx86_64 [
|
|
|
|
# x86_64 has no arch-specific mega-option, manually enable the options that apply to it
|
|
|
|
(lib.cmakeBool "LD80BITS" true)
|
|
|
|
(lib.cmakeBool "NOALIGN" true)
|
|
|
|
]
|
|
|
|
++ [
|
|
|
|
# Arch dynarec
|
|
|
|
(lib.cmakeBool "ARM_DYNAREC" (withDynarec && stdenv.hostPlatform.isAarch64))
|
|
|
|
(lib.cmakeBool "RV64_DYNAREC" (withDynarec && stdenv.hostPlatform.isRiscV64))
|
|
|
|
(lib.cmakeBool "LARCH64_DYNAREC" (withDynarec && stdenv.hostPlatform.isLoongArch64))
|
|
|
|
];
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
2023-02-02 18:25:31 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
install -Dm 0755 box64 "$out/bin/box64"
|
2023-02-02 18:25:31 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
2022-06-16 17:23:12 +00:00
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
doInstallCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
echo Checking if it works
|
2022-06-16 17:23:12 +00:00
|
|
|
$out/bin/box64 -v
|
2023-02-02 18:25:31 +00:00
|
|
|
|
|
|
|
echo Checking if Dynarec option was respected
|
|
|
|
$out/bin/box64 -v | grep ${lib.optionalString (!withDynarec) "-v"} Dynarec
|
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
passthru = {
|
2024-06-05 15:53:02 +00:00
|
|
|
updateScript = gitUpdater { rev-prefix = "v"; };
|
|
|
|
tests.hello =
|
|
|
|
runCommand "box64-test-hello" { nativeBuildInputs = [ finalAttrs.finalPackage ]; }
|
|
|
|
# There is no actual "Hello, world!" with any of the logging enabled, and with all logging disabled it's hard to
|
|
|
|
# tell what problems the emulator has run into.
|
|
|
|
''
|
|
|
|
BOX64_NOBANNER=0 BOX64_LOG=1 box64 ${lib.getExe hello-x86_64} --version | tee $out
|
|
|
|
'';
|
2022-12-17 10:02:37 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
meta = {
|
2022-06-16 17:23:12 +00:00
|
|
|
homepage = "https://box86.org/";
|
|
|
|
description = "Lets you run x86_64 Linux programs on non-x86_64 Linux systems";
|
2024-06-05 15:53:02 +00:00
|
|
|
changelog = "https://github.com/ptitSeb/box64/releases/tag/v${finalAttrs.version}";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [
|
|
|
|
gador
|
|
|
|
OPNA2608
|
|
|
|
];
|
2023-11-16 04:20:00 +00:00
|
|
|
mainProgram = "box64";
|
2024-06-05 15:53:02 +00:00
|
|
|
platforms = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
"riscv64-linux"
|
|
|
|
"powerpc64le-linux"
|
|
|
|
"loongarch64-linux"
|
|
|
|
"mips64el-linux"
|
|
|
|
];
|
2022-06-16 17:23:12 +00:00
|
|
|
};
|
2023-11-16 04:20:00 +00:00
|
|
|
})
|