Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

xbyak: init at 7.28

+28
+28
pkgs/by-name/xb/xbyak/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + }: 7 + stdenv.mkDerivation (finalAttrs: { 8 + pname = "xbyak"; 9 + version = "7.28"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "herumi"; 13 + repo = "xbyak"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-jBxpNeA2Ed13zpJ++ODsjKgSC14z/RTFX3px4SapeS0="; 16 + }; 17 + 18 + nativeBuildInputs = [ cmake ]; 19 + 20 + meta = { 21 + description = "JIT assembler for x86/x64 architectures supporting advanced instruction sets up to AVX10.2"; 22 + homepage = "https://github.com/herumi/xbyak"; 23 + changelog = "https://github.com/herumi/xbyak/blob/v${finalAttrs.version}/doc/changelog.md"; 24 + license = lib.licenses.bsd3; 25 + platforms = lib.platforms.all; 26 + maintainers = [ lib.maintainers.ryand56 ]; 27 + }; 28 + })