[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/06: gnu: Add zycore.
From: |
guix-commits |
Subject: |
03/06: gnu: Add zycore. |
Date: |
Mon, 19 Aug 2024 02:13:11 -0400 (EDT) |
z572 pushed a commit to branch master
in repository guix.
commit 724960a2642af6e3328b0e3de6b79344e895fb6b
Author: guix-patches--- via <guix-patches@gnu.org>
AuthorDate: Sun Aug 18 11:22:59 2024 +0900
gnu: Add zycore.
* gnu/packages/engineering.scm (zycore): New variable.
Change-Id: Ia38413f43bc667a9a12916d3f0e786e06f6d358f
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
---
gnu/packages/engineering.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 7a9c0bc436..e331e93e5a 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -40,6 +40,7 @@
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2023 pinoaffe <pinoaffe@gmail.com>
;;; Copyright © 2024 Juliana Sims <juli@incana.org>
+;;; Copyright © 2024 Nguyễn Gia Phong <mcsinyx@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1927,6 +1928,32 @@ like relocation symbols. It is able to deal with
malformed binaries, making
it suitable for security research and analysis.")
(license license:lgpl3)))
+(define-public zycore
+ (package
+ (name "zycore")
+ (version "1.5.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zyantific/zycore-c")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
"0s962pkqybh1xbs75y4jb4bqc9qnq0sviqd570mirqdhhq87agib"))))
+ (build-system cmake-build-system)
+ (native-inputs (list googletest))
+ (arguments (list #:configure-flags
+ #~(list "-DZYCORE_BUILD_SHARED_LIB=ON"
+ #$(if (%current-target-system)
+ "-DZYCORE_BUILD_TESTS=OFF"
+ "-DZYCORE_BUILD_TESTS=ON"))))
+ (home-page "https://github.com/zyantific/zycore-c")
+ (synopsis "Internal library for Zydis")
+ (description
+ "This package provides platfrom-independent types, macros
+and a fallback for environments without libc for Zydis.")
+ (license license:expat)))
+
(define-public asco
(package
(name "asco")
- branch master updated (58a839273d -> f30509e165), guix-commits, 2024/08/19
- 03/06: gnu: Add zycore.,
guix-commits <=
- 02/06: gnu: chrony: Fix cross-compilation., guix-commits, 2024/08/19
- 06/06: gnu: direvent: Update to 5.4., guix-commits, 2024/08/19
- 01/06: gnu: chrony: Update to 4.5., guix-commits, 2024/08/19
- 05/06: gnu: gitile: Replace outdated dependency., guix-commits, 2024/08/19
- 04/06: gnu: Add zydis., guix-commits, 2024/08/19