summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSisiutl <sisiutl@egregore.fun>2024-11-08 13:40:16 +0100
committerSisiutl <sisiutl@egregore.fun>2024-11-08 13:40:16 +0100
commitf58f1124ac7036a5659880c3a685e1bd6b4bd645 (patch)
treee9527d0018e941256a7bf8d43927cbb40d7bf854
parent0a69b848bb862f9205ee8c95e8c197de921874db (diff)
upstream udis86
-rw-r--r--sigils/packages/hyprland.scm34
-rw-r--r--sigils/packages/upstream.scm32
2 files changed, 32 insertions, 34 deletions
diff --git a/sigils/packages/hyprland.scm b/sigils/packages/hyprland.scm
index 9e75516..cb697c4 100644
--- a/sigils/packages/hyprland.scm
+++ b/sigils/packages/hyprland.scm
@@ -34,40 +34,6 @@
#:use-module (gnu packages xorg)
#:use-module (sigils packages upstream))
-;;; To upstream before the heat death of the universe
-
-(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))))
-
;;; Hyprland
(define hyprland-version "0.44.1")
diff --git a/sigils/packages/upstream.scm b/sigils/packages/upstream.scm
index c08548f..9181c58 100644
--- a/sigils/packages/upstream.scm
+++ b/sigils/packages/upstream.scm
@@ -144,3 +144,35 @@ information such as the command that it would use, the detected MIME-type, etc."
(lambda _
(substitute* "tests/CMakeLists.txt"
(("/etc/dbus-1/system.d") "/tmp")))))))))
+
+(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))))