diff options
author | Andreas Enge <andreas@enge.fr> | 2025-07-26 19:54:13 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-26 19:54:24 +0200 |
commit | a0166254c58a6d2354dbf4541a84c2f4f53b0cdb (patch) | |
tree | 0be280c443d008ce2f747fc70b9f739b3c8b4dc3 | |
parent | f721c4cc0400fd64773a8843ee30c3eff9da7b87 (diff) |
gnu: Remove ht.
* gnu/packages/hexedit.scm (ht): Delete variable.
Fixes: guix/guix#854
Change-Id: Ia1ffe0eb550cff1b3d086c5b39487fbad1f4d794
-rw-r--r-- | gnu/packages/hexedit.scm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gnu/packages/hexedit.scm b/gnu/packages/hexedit.scm index fa3b94629e..e9e6482780 100644 --- a/gnu/packages/hexedit.scm +++ b/gnu/packages/hexedit.scm @@ -180,30 +180,6 @@ easily and conveniently compare two binary files. It is based on Ncurses and is themeable.") (license license:gpl2+))) -(define-public ht - (package - (name "ht") - (version "2.1.0") - (source (origin - (method url-fetch) - (uri (string-append - "https://sourceforge.net/projects/hte/files/ht-source/" - name "-" version ".tar.bz2")) - (sha256 - (base32 - "0w2xnw3z9ws9qrdpb80q55h6ynhh3aziixcfn45x91bzrbifix9i")))) - (build-system gnu-build-system) - (inputs - (list lzo ncurses)) - (synopsis "Viewer, editor, and analyzer for executable binaries") - (description - "ht is a terminal-based program to view, edit, and analyze any file, but -with a special focus on executable binaries. Its goal is to combine the -low-level functionality of a debugger with the usability of an @dfn{Integrated -Development Environment} (IDE).") - (home-page "https://hte.sourceforge.net/") - (license license:gpl2))) - ;; NOTE: The install target of imhex-pattern-language falls short in a few areas ;; that make this package difficult to use outside of ImHex. Neither header ;; files nor package information (using e.g. pkg-config or CMake files) are |