gnu: man-db: Update to 2.8.5.
* gnu/packages/man.scm (man-db): Update to 2.8.5. [arguments]: Add systemd unit directory to #:configure-flags.
This commit is contained in:
parent
dcb3a0fe0a
commit
4ac7112748
|
@ -60,14 +60,14 @@ a flexible and convenient way.")
|
||||||
(define-public man-db
|
(define-public man-db
|
||||||
(package
|
(package
|
||||||
(name "man-db")
|
(name "man-db")
|
||||||
(version "2.8.3")
|
(version "2.8.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://savannah/man-db/man-db-"
|
(uri (string-append "mirror://savannah/man-db/man-db-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1b641kcgjvyc41pj67dn4p0zvwlj1vx3l6nf7qdcc7kf6v5a2cjr"))))
|
"1hgnfcgbllmws8cs6zaxklq8b69i05zynxi87f3zxw9lfms54kdn"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -117,8 +117,9 @@ a flexible and convenient way.")
|
||||||
(string-append "--with-bzip2=" bzip2 "/bin/gzip")
|
(string-append "--with-bzip2=" bzip2 "/bin/gzip")
|
||||||
(string-append "--with-xz=" xz "/bin/xz")
|
(string-append "--with-xz=" xz "/bin/xz")
|
||||||
(string-append "--with-col=" util "/bin/col")
|
(string-append "--with-col=" util "/bin/col")
|
||||||
;; Default value is "/usr/lib/tmpfiles.d" (not
|
;; The default systemd directories ignore --prefix.
|
||||||
;; prefix-sensitive).
|
(string-append "--with-systemdsystemunitdir="
|
||||||
|
%output "/lib/systemd/system")
|
||||||
(string-append "--with-systemdtmpfilesdir="
|
(string-append "--with-systemdtmpfilesdir="
|
||||||
%output "/lib/tmpfiles.d"))
|
%output "/lib/tmpfiles.d"))
|
||||||
(map (lambda (prog)
|
(map (lambda (prog)
|
||||||
|
|
Loading…
Reference in New Issue