* [bug#74257] [PATCH] gnu: Add udis86.
@ 2024-11-08 12:38 Sisiutl
0 siblings, 0 replies; only message in thread
From: Sisiutl @ 2024-11-08 12:38 UTC (permalink / raw)
To: 74257; +Cc: Sisiutl
* gnu/packages/assembly.scm (udis86): New variable.
Change-Id: I63dd160b704428536cf1282616a6615658a39e22
---
gnu/packages/assembly.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/assembly.scm b/gnu/packages/assembly.scm
index 75cb7de999..3ffd0e8042 100644
--- a/gnu/packages/assembly.scm
+++ b/gnu/packages/assembly.scm
@@ -787,3 +787,35 @@ (define-public blinkenlights
software changes memory. It can emulate statically-linked i8086 and
x86_64-pc-linux-gnu programs.")
(license license:isc)))
+
+(define-public udis86
+ (let ((commit "5336633af70f3917760a6d441ff02d93477b0c86")
+ (revision "1"))
+ (package
+ (name "udis86")
+ (version (git-version "1.7.2" revision commit))
+ (home-page "http://udis86.sourceforge.net/")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/canihavesomecoffee/udis86.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0y5z1169wff578jylpafsww4px4y6gickhcs885a9c660d8xs9qy"))))
+ (build-system gnu-build-system)
+ (native-inputs (list pkg-config
+ autoconf
+ automake
+ libtool
+ python))
+ (arguments
+ (list #:configure-flags
+ #~(list "--enable-shared"
+ (string-append "--with-python="
+ #$(file-append python "/bin/python3")))))
+ (synopsis "Disassembler Library for x86 and x86-64")
+ (description "Udis86 is a disassembler for the x86 and x86-64 class of
+instruction set architectures.")
+ (license license:bsd-2))))
--
2.46.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2024-11-08 13:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-08 12:38 [bug#74257] [PATCH] gnu: Add udis86 Sisiutl
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).