diff options
author | Alex Kost <alezost@gmail.com> | 2015-07-21 17:15:09 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-07-21 20:42:06 +0300 |
commit | a37f9722a55f1204438886744c2256903630dc6f (patch) | |
tree | 3112f9cbc50d18c91cab1b53f6631d533b8c84e7 /gnu/packages/man.scm | |
parent | bfe5258497f71d5770052ced2c4210225af2215c (diff) | |
download | guix-a37f9722a55f1204438886744c2256903630dc6f.tar guix-a37f9722a55f1204438886744c2256903630dc6f.tar.gz |
gnu: man-db: Update to 2.7.1.
* gnu/packages/man.scm (man-db): Update to 2.7.1.
[arguments]: Add '--with-systemdtmpfilesdir' to configure flags.
Diffstat (limited to 'gnu/packages/man.scm')
-rw-r--r-- | gnu/packages/man.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/man.scm b/gnu/packages/man.scm index f035ef7be6..31598d0168 100644 --- a/gnu/packages/man.scm +++ b/gnu/packages/man.scm @@ -57,14 +57,14 @@ a flexible and convenient way.") (define-public man-db (package (name "man-db") - (version "2.6.6") + (version "2.7.1") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/man-db/man-db-" version ".tar.xz")) (sha256 (base32 - "1hv6byj6sg6cp3jyf08gbmdm4pwhvd5hzmb94xl0w7prin6hzabx")))) + "03ly0hbpgjnag576rgccanaisn7f6422q5qxrj64vyzslc2651y4")))) (build-system gnu-build-system) (arguments '(#:phases @@ -93,7 +93,11 @@ a flexible and convenient way.") (string-append "--with-gzip=" gzip "/bin/gzip") (string-append "--with-bzip2=" bzip2 "/bin/gzip") (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 + ;; prefix-sensitive). + (string-append "--with-systemdtmpfilesdir=" + %output "/lib/tmpfiles.d")) (map (lambda (prog) (string-append "--with-" prog "=" groff "/bin/" prog)) '("nroff" "eqn" "neqn" "tbl" "refer" "pic")))) |