summary refs log tree commit diff
path: root/pkgs/tools/misc/man-db
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-08-09 11:06:20 -0400
committerMatthew Bauer <mjbauer95@gmail.com>2019-08-15 12:57:34 -0400
commit77b40af4de237b517a4e189df6b797fcba1c3605 (patch)
tree1b917f86353e53d2e1542b57d375c2bd032ab793 /pkgs/tools/misc/man-db
parent3c39b47a62ec21d526514956ad1561a57047b51d (diff)
downloadnixpkgs-77b40af4de237b517a4e189df6b797fcba1c3605.tar
nixpkgs-77b40af4de237b517a4e189df6b797fcba1c3605.tar.gz
nixpkgs-77b40af4de237b517a4e189df6b797fcba1c3605.tar.bz2
nixpkgs-77b40af4de237b517a4e189df6b797fcba1c3605.tar.lz
nixpkgs-77b40af4de237b517a4e189df6b797fcba1c3605.tar.xz
nixpkgs-77b40af4de237b517a4e189df6b797fcba1c3605.tar.zst
nixpkgs-77b40af4de237b517a4e189df6b797fcba1c3605.zip
man-db: 2.7.5 -> 2.8.6.1
Diffstat (limited to 'pkgs/tools/misc/man-db')
-rw-r--r--pkgs/tools/misc/man-db/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/misc/man-db/default.nix b/pkgs/tools/misc/man-db/default.nix
index ccb76650382..b17008d665d 100644
--- a/pkgs/tools/misc/man-db/default.nix
+++ b/pkgs/tools/misc/man-db/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, pkgconfig, libpipeline, db, groff, libiconv, makeWrapper, buildPackages }:
 
 stdenv.mkDerivation rec {
-  name = "man-db-2.7.5";
+  name = "man-db-2.8.6.1";
 
   src = fetchurl {
     url = "mirror://savannah/man-db/${name}.tar.xz";
-    sha256 = "056a3il7agfazac12yggcg4gf412yq34k065im0cpfxbcw6xskaw";
+    sha256 = "0a1sh5gxa16k6irzf3q2lli8m204w9ik1xm62wjgf1mzknxs4xrc";
   };
 
   outputs = [ "out" "doc" ];
@@ -23,10 +23,12 @@ stdenv.mkDerivation rec {
 
   configureFlags = [
     "--disable-setuid"
+    "--disable-cache-owner"
     "--localstatedir=/var"
     # Don't try /etc/man_db.conf by default, so we avoid error messages.
-    "--with-config-file=\${out}/etc/man_db.conf"
-    "--with-systemdtmpfilesdir=\${out}/lib/tmpfiles.d"
+    "--with-config-file=${placeholder "out"}/etc/man_db.conf"
+    "--with-systemdtmpfilesdir=${placeholder "out"}/lib/tmpfiles.d"
+    "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
   ];
 
   preConfigure = ''