xcursor-pro: init at 2.0.2 (#335188)
[NixPkgs.git] / pkgs / by-name / as / asmjit / package.nix
blobc8a795e959bed9f4628ebe6b7cec451fdd597b5c
2   stdenv,
3   fetchFromGitHub,
4   cmake,
5   ninja,
6   lib,
7 }:
9 stdenv.mkDerivation {
10   pname = "asmjit";
11   version = "unstable-2023-04-28";
13   src = fetchFromGitHub {
14     owner = "asmjit";
15     repo = "asmjit";
16     rev = "3577608cab0bc509f856ebf6e41b2f9d9f71acc4";
17     hash = "sha256-EIfSruaM2Z64XOYAeEaf/wFy6/7UO6Sth487R1Q0yhI=";
18   };
20   nativeBuildInputs = [
21     cmake
22     ninja
23   ];
25   strictDeps = true;
27   meta = with lib; {
28     description = "Machine code generation for C++";
29     longDescription = ''
30       AsmJit is a lightweight library for machine code generation written in
31       C++ language. It can generate machine code for X86, X86_64, and AArch64
32       architectures and supports baseline instructions and all recent
33       extensions.
34     '';
35     homepage = "https://asmjit.com/";
36     license = licenses.zlib;
37     maintainers = with maintainers; [ nikstur ];
38   };