mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: Add VBinDiff.
* gnu/packages/patchutils.scm (vbindiff): New variable.
This commit is contained in:
parent
c1cdadc6ba
commit
9e286eb1b5
1 changed files with 25 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2015, 2018 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -32,9 +32,10 @@ (define-module (gnu packages patchutils)
|
|||
#:use-module (gnu packages file)
|
||||
#:use-module (gnu packages gawk)
|
||||
#:use-module (gnu packages less)
|
||||
#:use-module (gnu packages mail)
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages mail)
|
||||
#:use-module (gnu packages xml))
|
||||
|
||||
(define-public patchutils
|
||||
|
@ -209,3 +210,25 @@ (define-public patches
|
|||
the status of a patch, apply patches, and search for patches---all that from
|
||||
the command-line or from Emacs via its Notmuch integration.")
|
||||
(license gpl2+))))
|
||||
|
||||
(define-public vbindiff
|
||||
(package
|
||||
(name "vbindiff")
|
||||
(version "3.0_beta5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://www.cjmweb.net/vbindiff/vbindiff-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1f1kj4jki08bnrwpzi663mjfkrx4wnfpzdfwd2qgijlkx5ysjkgh"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("ncurses" ,ncurses)))
|
||||
(home-page "https://www.cjmweb.net/vbindiff/")
|
||||
(synopsis "Console-based tool for comparing binary data")
|
||||
(description "Visual Binary Diff (@command{vbindiff}) displays files in
|
||||
hexadecimal and ASCII (or EBCDIC). It can also display two files at once, and
|
||||
highlight the differences between them. It works well with large files (up to 4
|
||||
GiB).")
|
||||
(license gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue