me
/
guix
Archived
1
0
Fork 0

gnu: hex: Install manpage.

* gnu/packages/rust-apps.scm (hex)[arguments]: Add a phase to install
the included manpage.

Change-Id: I976ff6a8cc1b6cb16d84373be361f5d6c6781a74
master
Efraim Flashner 2024-01-23 17:23:13 +02:00
parent ed8af9ad1f
commit edea52e2fe
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 1 deletions

View File

@ -1838,7 +1838,13 @@ revert and check changes.
("rust-clap" ,rust-clap-4)
("rust-no-color" ,rust-no-color-0.1))
#:cargo-development-inputs
(("rust-assert-cmd" ,rust-assert-cmd-2))))
(("rust-assert-cmd" ,rust-assert-cmd-2))
#:phases
(modify-phases %standard-phases
(add-after 'install 'install-more
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(install-file "hx.1" (string-append out "/share/man/man1"))))))))
(home-page "https://github.com/sitkevij/hex")
(synopsis "Hexadecimal colorized view of a file")
(description