diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-05-25 00:53:04 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-05-25 00:53:04 +0200 |
commit | 848e600d71bc7420ff08cc1f1fd40498b7817ab4 (patch) | |
tree | afb70a8a9f2745cb25f392a6d2305b390a5bf3b2 /gnu | |
parent | bb9dec546f839c38b7955f78d46b5405af505f76 (diff) | |
download | guix-848e600d71bc7420ff08cc1f1fd40498b7817ab4.tar.gz guix-848e600d71bc7420ff08cc1f1fd40498b7817ab4.zip |
gnu: Remove help2man@1.47.6.
* gnu/packages/man.scm (help2man): Update to 1.47.10.
(help2man/latest): Remove variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/man.scm | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm index 04c800e95f..a24c7eff22 100644 --- a/gnu/packages/man.scm +++ b/gnu/packages/man.scm @@ -198,7 +198,7 @@ Linux kernel and C library interfaces employed by user-space programs.") (define-public help2man (package (name "help2man") - (version "1.47.6") + (version "1.47.10") (source (origin (method url-fetch) @@ -206,7 +206,7 @@ Linux kernel and C library interfaces employed by user-space programs.") version ".tar.xz")) (sha256 (base32 - "0vz4dlrvy4vc6l7w0a7n668pfa0rdm73wr2gar58wqranyah46yr")))) + "1yywli520246aba12vpgj7bhr1r13swad3xm49a0cygqcgywnwgk")))) (build-system gnu-build-system) (arguments `(;; There's no `check' target. #:tests? #f)) @@ -224,18 +224,6 @@ Linux kernel and C library interfaces employed by user-space programs.") automatically.") (license gpl3+))) -(define-public help2man/latest - (package - (inherit help2man) - (version "1.47.10") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnu/help2man/help2man-" - version ".tar.xz")) - (sha256 - (base32 - "1yywli520246aba12vpgj7bhr1r13swad3xm49a0cygqcgywnwgk")))))) - (define-public scdoc (package (name "scdoc") |