[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/12: gnu: just: Install manpage.
From: |
guix-commits |
Subject: |
11/12: gnu: just: Install manpage. |
Date: |
Thu, 28 Sep 2023 14:18:19 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 5b1897134877330e645ca572b93a50bb26ffb500
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Sep 28 21:08:00 2023 +0300
gnu: just: Install manpage.
* gnu/packages/rust-apps.scm (just)[arguments]: Add phase to install
manpage.
---
gnu/packages/rust-apps.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index a18f7b31c7..7a5760a396 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -801,7 +801,12 @@ bar. It is also compatible with sway.")
(("/usr/bin/env")
(search-input-file inputs "/bin/env"))
(("/bin/echo")
- (search-input-file inputs "/bin/echo"))))))))
+ (search-input-file inputs "/bin/echo")))))
+ (add-after 'install 'install-manpage
+ (lambda* (#:key outputs #:allow-other-keys)
+ (install-file "man/just.1"
+ (string-append (assoc-ref outputs "out")
+ "/share/man/man1")))))))
(home-page "https://github.com/casey/just")
(synopsis "Just a command runner")
(description "This package provides @code{just}, a command runner.
- branch master updated (aa69d140d3 -> 36094ba021), guix-commits, 2023/09/28
- 02/12: gnu: Add rust-snafu-derive-0.7., guix-commits, 2023/09/28
- 01/12: gnu: Add rust-executable-path-1., guix-commits, 2023/09/28
- 03/12: gnu: Add rust-snafu-0.7., guix-commits, 2023/09/28
- 05/12: gnu: Add rust-strum-0.24., guix-commits, 2023/09/28
- 04/12: gnu: Add rust-lexiclean-0.0.1., guix-commits, 2023/09/28
- 06/12: gnu: Add rust-dotenvy-0.15., guix-commits, 2023/09/28
- 07/12: gnu: Add rust-cradle-0.2., guix-commits, 2023/09/28
- 08/12: gnu: Add rust-target-2., guix-commits, 2023/09/28
- 09/12: gnu: Add rust-temptree-0.2., guix-commits, 2023/09/28
- 11/12: gnu: just: Install manpage.,
guix-commits <=
- 12/12: gnu: just: Install shell completions., guix-commits, 2023/09/28
- 10/12: gnu: Add just., guix-commits, 2023/09/28