summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSisiutl <sisiutl@egregore.fun>2025-02-01 02:49:44 +0100
committerSisiutl <sisiutl@egregore.fun>2025-02-01 02:49:44 +0100
commit8e9aaef0b97720113cec10683cf577cc3c75c9a9 (patch)
treef31a33e5136fd3d0bec2b1f62009cd544917cd16
parentaae428799375840cdd2c000e0e4c8b13cf2abc34 (diff)
remove two upstreamed packages
-rw-r--r--sigils/packages/upstream.scm62
1 files changed, 0 insertions, 62 deletions
diff --git a/sigils/packages/upstream.scm b/sigils/packages/upstream.scm
index 708ef41..300a5ba 100644
--- a/sigils/packages/upstream.scm
+++ b/sigils/packages/upstream.scm
@@ -125,68 +125,6 @@ information such as the command that it would use, the detected MIME-type, etc."
'(#:tests? #f)) ;tests fail on the beta
(license license:bsd-2)))
-(define-public sdbus-c++-next
- (package
- (inherit sdbus-c++)
- (name "sdbus-c++")
- (version "2.0.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/Kistler-Group/sdbus-cpp")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1s6vhzln0rvac2r3v8nq08hsjhyz3y46fsy18i23ppjm30apkiav"))))
- (arguments
- (list
- ;; Avoid the integration test, which requires a system bus.
- #:test-target "sdbus-c++-unit-tests"
- #:configure-flags #~(list "-DSDBUSCPP_BUILD_CODE_GEN=ON"
- "-DSDBUSCPP_BUILD_TESTS=ON"
- ;; Do not install tests.
- "-DSDBUSCPP_TESTS_INSTALL_PATH=/tmp"
- "-DCMAKE_VERBOSE_MAKEFILE=ON")
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'do-not-install-tests
- (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))))
-
(define-public python-pyopengl
(package
(name "python-pyopengl")