xbyak: init at 7.28

This commit is contained in:
Ryan Omasta
2025-07-22 15:40:16 -06:00
parent 6581807c3f
commit ce9f005b48
+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 ];
};
})