;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Kei Kebreau ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages hexedit) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (gnu packages) #:use-module (gnu packages ncurses) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public hexedit (package (name "hexedit") (version "1.2.13") (source (origin (method url-fetch) (uri (string-append "http://rigaux.org/" name "-" version ".src.tgz")) (sha256 (base32 "1mwdp1ikk64cqmagnrrps5jkn3li3n47maiqh2qc1xbp1ains4ka")))) (build-system gnu-build-system) (arguments '(#:tests? #f)) ; no check target (inputs `(("ncurses" ,ncurses))) (synopsis "View and edit files or devices in hexadecimal or ASCII") (description "hexedit shows a file both in ASCII and in hexadecimal. The file can be a device as the file is read a piece at a time. You can modify the file and search through it.") (home-page "http://rigaux.org/hexedit.html") (license license:gpl2+))) /option>
AgeCommit message (Expand)Author
2022-01-30gnu: patchelf: Add release-monitoring-url....* gnu/packages/elf.scm (patchelf)[properties]: New field. Efraim Flashner
2022-01-27gnu: elfutils: Fix building on riscv64-linux....* gnu/packages/elf.scm (elfutils)[arguments]: On riscv64-linux add a phase to skip failing test. Efraim Flashner
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-07-14libelf: Update configure script and config.guess and config.sub....The current configure script is too old to find the cross-compiler and support variables passed as arguments. Also, config.guess and config.sub are too old to recognise powerpc64 and aarch64. Solve this by regenerating the 'configure' script and replacing 'config.guess' and 'config.sub'. * gnu/packages/elf.scm (libelf)[arguments]<#:phases>{configure}: Remove phase. (libelf)[arguments]<#:phases>{delete-configure}: Regenerate the configure script and replace 'config.guess' and 'config.sub'. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Maxime Devos
2021-05-09gnu: elfutils: Omit static libraries....* gnu/packages/elf.scm (elfutils)[arguments]: Add "--disable-static" to #:configure-flags. Marius Bakke
2021-05-09gnu: elfutils: Update to 0.183....* gnu/packages/elf.scm (elfutils): Update to 0.183. Marius Bakke
2021-03-23gnu: libelf: Fix compilation for powerpc64le-linux....* gnu/packages/elf.scm (libelf)[arguments]: Modify replacement 'configure phase to invoke "./configure" with "--host=powerpc64le-unknown-linux-gnu" on powerpc64le-linux. Signed-off-by: Chris Marusich <cmmarusich@gmail.com> Leo Le Bouter
2021-01-25Merge branch 'master' into stagingLeo Famulari
2021-01-19gnu: libabigail: Update to 1.8....* gnu/packages/elf.scm (libabigail): Update to 1.8. Eric Bavier