summaryrefslogtreecommitdiff
path: root/gnu/packages/engineering.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/engineering.scm')
-rw-r--r--gnu/packages/engineering.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 889de1cb43..719a861f84 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -3838,6 +3838,10 @@ program that can perform mesh processing tasks in batch mode, without a GUI.")
"/share/vim/vimfiles/pack/guix/start/poke")
(string-append "--with-lispdir="
(emacs:elpa-directory #$output)))))
+ (native-search-paths
+ (list (search-path-specification
+ (variable "POKE_LOAD_PATH")
+ (files '("share/poke/pickles")))))
(home-page "https://www.gnu.org/software/poke/#documentation")
(synopsis "Editing of arbitrary binary data")
(description "GNU poke is an interactive, extensible editor for binary data.
@@ -3846,6 +3850,26 @@ full-fledged procedural, interactive programming language designed to describe
data structures and to operate on them.")
(license license:gpl3+)))
+(define-public poke-elf
+ (package
+ (name "poke-elf")
+ (version "1.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/poke/poke-elf-" version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0x3shih7sjj34f5305kvbp4cfy11m92zwidjk3658m23zkd6gdqa"))))
+ (build-system gnu-build-system)
+ (native-inputs (list poke)) ;for the test suite
+ (home-page "https://jemarch.net/poke-elf")
+ (synopsis "GNU poke pickle for ELF object files")
+ (description "@code{poke-elf} is a GNU poke pickle for editing ELF object files,
+executables, shared libraries and core dumps. It supports many architectures
+and extensions.")
+ (license license:gpl3+)))
+
(define-public emacs-poke
;; The 'emacs-poke' name may eventually refer to 'poke' from ELPA, which is
;; a different beast.