diff options
| author | bd <bdunahu@operationnull.com> | 2025-12-14 13:14:18 -0500 |
|---|---|---|
| committer | bdunahu <bdunahu@operationnull.com> | 2025-12-14 13:20:32 -0500 |
| commit | 3960d45383c672f8aacab8e354824793256c9d29 (patch) | |
| tree | 8d677094685d18bd044762d7d24d942c9f122450 | |
| parent | 7f1974dc6df76af9cde5fa5cfa16779519f94d8c (diff) | |
tanelorn: Remove sdb, radare2-6.0.7
These packages were added to the main guix channel.
* modules/tanelorn/packages/engineering.scm (radare2-6.0.7): Removed variable.
* modules/tanelorn/packages/engineering.scm (sdb): Removed variable.
* README: Removed sdb and radare2.
| -rw-r--r-- | README | 2 | ||||
| -rw-r--r-- | modules/tanelorn/packages/engineering.scm | 113 |
2 files changed, 0 insertions, 115 deletions
@@ -8,8 +8,6 @@ The packages and services found here are optionally free for anyone to use, unde - *Engineering*: - - sdb - - radare2 - python-austin - *Emacs Packages*: diff --git a/modules/tanelorn/packages/engineering.scm b/modules/tanelorn/packages/engineering.scm index 2fb2554..80dd961 100644 --- a/modules/tanelorn/packages/engineering.scm +++ b/modules/tanelorn/packages/engineering.scm @@ -21,119 +21,6 @@ #:use-module (gnu packages python) #:use-module (gnu packages tls)) -(define-public sdb - (package - (name "sdb") - (version "2.2.4") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/radareorg/sdb.git") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "15pc807s2nmhnr3mspyz9h47rkxkv1r07x959ir17v5b6zs7wxvw")))) - (build-system meson-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - ;; The meson config offloads the work of running the tests to - ;; the Makefile, which 1) assumes the source directory is the parent - ;; of the build directory, and 2) the CC environment variable is set. - (add-before 'check 'fix-meson-test-declaration - (lambda _ - (substitute* "../source/meson.build" - (("env: \\[(.*)$" _ end) - (string-append "env: ['CC=gcc', " end)) - (("workdir: join_paths.*$") - "workdir: meson.project_source_root(),\n"))))))) - (home-page "https://github.com/radareorg/sdb") - (synopsis "Simple and fast string based key-value database") - (description "SDB is a simple key/value database based on djb's cdb disk -storage that supports JSON and array introspection.") - (license license:expat))) - -(define-public radare2-6.0.7 - (package - (name "radare2") - (version "6.0.7") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/radareorg/radare2") - (commit version))) - (sha256 - (base32 - "1nkqa8mkmvmbc3812gf5ayfmzyf0krjgc1695rpkphw3fsl76rgx")) - (file-name (git-file-name name version)) - (patches - (tanelorn-patches "radare2-fix-meson-build-to-use-sys-sdb.patch" - "radare2-fix-meson-build-to-use-sys-qjs.patch")))) - (build-system meson-build-system) - (arguments - (list - #:configure-flags - #~(list "-Duse_sys_capstone=true" - "-Duse_sys_magic=true" - "-Duse_sys_zip=true" - "-Duse_sys_zlib=true" - "-Duse_sys_lz4=true" - "-Duse_sys_xxhash=true" - "-Duse_sys_openssl=true") - #:phases - #~(modify-phases %standard-phases - ;; CHECK LATER: This patches an incorrect relative include. - (add-before 'build 'fix-relative-include - (lambda* _ - (substitute* "../source/libr/arch/p/java/plugin.c" - (("include \".." all) - (string-append all "/.."))))) - ;; These tests require sample binaries from an external repository. - (add-before 'check 'skip-tests - (lambda* _ - (substitute* '("../source/test/unit/test_bin.c" - "../source/test/unit/test_dwarf.c" - "../source/test/unit/test_dwarf_info.c" - "../source/test/unit/test_dwarf_integration.c" - "../source/test/unit/test_pdb.c" - "../source/test/unit/test_r2pipe.c") - (("(^| )main *\\(.*" all) - (string-append all " exit (77);\n")))))))) - (inputs - (list capstone - gmp - libuv - libzip - lz4 - openssl - python - quickjs-ng - sdb - zip - zlib)) - (native-inputs - (list pkg-config)) - (propagated-inputs - (list xxhash)) - (home-page "https://radare.org/") - (synopsis "Reverse engineering framework") - (description - "Radare2 is a complete framework for reverse-engineering, debugging, and -analyzing binaries. It is composed of a set of small utilities that can be -used together or independently from the command line. - -Radare2 is built around a scriptable disassembler and hexadecimal editor that -support a variety of executable formats for different processors and operating -systems, through multiple back ends for local and remote files and disk -images. - -It can also compare (@dfn{diff}) binaries with graphs and extract information -like relocation symbols. It is able to deal with malformed binaries, making -it suitable for security research and analysis.") - (license license:lgpl3))) - (define-public python-austin (package (name "python-austin") |
