diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-12-11 01:00:06 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-12-11 01:00:04 +0100 |
commit | 7951892d39211aaeccefeab9a5971ec08572cce8 (patch) | |
tree | 456368904dbba41546f8ec5eed78725e42237c53 | |
parent | a4e98faa1e852c0e25bddd915a7dd8c8bed26a04 (diff) | |
download | guix-7951892d39211aaeccefeab9a5971ec08572cce8.tar.gz |
gnu: ncdu2: Delete pregenerated man page from source.
* gnu/packages/ncdu.scm (ncdu2)[source]: Add a snippet. [arguments]: Adjust 'build-manpage phase accordingly.
-rw-r--r-- | gnu/packages/ncdu.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/ncdu.scm b/gnu/packages/ncdu.scm index 6f541878fc..6b802aafa0 100644 --- a/gnu/packages/ncdu.scm +++ b/gnu/packages/ncdu.scm @@ -66,7 +66,12 @@ ncurses installed.") version ".tar.gz")) (sha256 (base32 - "0hfimrr7z9zrfkiyj09i8nh4a1rjn7d00y9xzpc7mkyqpkvghjjy")))) + "0hfimrr7z9zrfkiyj09i8nh4a1rjn7d00y9xzpc7mkyqpkvghjjy")) + (modules '((guix build utils))) + (snippet + #~(begin + ;; Delete a pregenerated man page. We'll build it ourselves. + (delete-file "ncdu.1"))))) (arguments (list #:make-flags @@ -83,7 +88,6 @@ ncurses installed.") (mkdtemp "/tmp/zig-cache-XXXXXX")))) (add-after 'build 'build-manpage (lambda _ - (delete-file "ncdu.1") (invoke "make" "doc"))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) |