xbyak: init at 7.28 (#420353)

This commit is contained in:
Aleksana
2025-07-23 10:44:44 +08:00
committed by GitHub
+28
View File
@@ -0,0 +1,28 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xbyak";
version = "7.28";
src = fetchFromGitHub {
owner = "herumi";
repo = "xbyak";
tag = "v${finalAttrs.version}";
hash = "sha256-jBxpNeA2Ed13zpJ++ODsjKgSC14z/RTFX3px4SapeS0=";
};
nativeBuildInputs = [ cmake ];
meta = {
description = "JIT assembler for x86/x64 architectures supporting advanced instruction sets up to AVX10.2";
homepage = "https://github.com/herumi/xbyak";
changelog = "https://github.com/herumi/xbyak/blob/v${finalAttrs.version}/doc/changelog.md";
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.ryand56 ];
};
})