gnu: man-pages: Update to 5.12.

* gnu/packages/man.scm (man-pages): Update to 5.12.
[arguments]: Follow switch to standard ‘mandir’ over ‘MANDIR’.  \o/
This commit is contained in:
Tobias Geerinckx-Rice 2021-06-29 03:09:53 +02:00
parent 5b9a769b23
commit 1ef68130a3
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -269,7 +269,7 @@ (define-public mandoc
(define-public man-pages
(package
(name "man-pages")
(version "5.11")
(version "5.12")
(source
(origin
(method url-fetch)
@ -279,7 +279,7 @@ (define-public man-pages
(string-append "mirror://kernel.org/linux/docs/man-pages/Archive/"
"man-pages-" version ".tar.xz")))
(sha256
(base32 "1aiwn6yi19idg4jbf7x4x5i06macjv7r8d5fgp1rwnc4a775vniy"))))
(base32 "07ip4f70nyxn24wy0fin6klq1hm1cjjvzr9zh5baqzssl1hckxbs"))))
(build-system gnu-build-system)
(arguments
'(#:phases (modify-phases %standard-phases (delete 'configure))
@ -290,7 +290,7 @@ (define-public man-pages
#:parallel-build? #f
#:tests? #f
#:make-flags (list (string-append "MANDIR="
#:make-flags (list (string-append "mandir="
(assoc-ref %outputs "out")
"/share/man"))))
(home-page "https://www.kernel.org/doc/man-pages/")