summaryrefslogtreecommitdiff
path: root/modules/freya/packages/assembly.scm
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-08-06 20:14:18 -0400
committerFreya Murphy <freya@freyacat.org>2024-08-06 20:14:18 -0400
commit30fd5a7f1b6d2c77e0ef0c36cad4c5ad6b22ac46 (patch)
tree6e2ea23f8c9451594ec434b53da357d820c3cae5 /modules/freya/packages/assembly.scm
parentupdate configs (diff)
downloaddotfiles-guix-30fd5a7f1b6d2c77e0ef0c36cad4c5ad6b22ac46.tar.gz
dotfiles-guix-30fd5a7f1b6d2c77e0ef0c36cad4c5ad6b22ac46.tar.bz2
dotfiles-guix-30fd5a7f1b6d2c77e0ef0c36cad4c5ad6b22ac46.zip
update packages, remove rosenthall, update hyprland to 0.42.0-git staging
Diffstat (limited to 'modules/freya/packages/assembly.scm')
-rw-r--r--modules/freya/packages/assembly.scm32
1 files changed, 32 insertions, 0 deletions
diff --git a/modules/freya/packages/assembly.scm b/modules/freya/packages/assembly.scm
new file mode 100644
index 0000000..5b6609f
--- /dev/null
+++ b/modules/freya/packages/assembly.scm
@@ -0,0 +1,32 @@
+(define-module (freya packages assembly)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system gnu)
+ #:use-module (guix packages)
+ #:use-module (gnu packages autotools)
+ #:use-module (gnu packages python))
+
+(define-public udis86
+ (let ((revision "186")
+ (commit "5336633af70f3917760a6d441ff02d93477b0c86"))
+ (package
+ (name "udis86")
+ (version (git-version "1.7.2" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/canihavesomecoffee/udis86")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0y5z1169wff578jylpafsww4px4y6gickhcs885a9c660d8xs9qy"))))
+ (build-system gnu-build-system)
+ (native-inputs (list autoconf automake libtool python-minimal-wrapper))
+ (home-page "https://github.com/canihavesomecoffee/udis86")
+ (synopsis "Disassembler Library for x86 and x86-64")
+ (description
+ "Udis86 is a disassembler for the x86 and x86-64 class of instruction
+set architectures. It consists of a C library called @code{libudis86} and a
+command line tool called @code{udcli} that incorporates the library.")
+ (license license:bsd-2))))