forked from mirrors/nixpkgs
man-db: clean the expression a bit
This solves the errors > can't open the manpath configuration file /etc/man_db.conf which were common e.g. for fish users.
This commit is contained in:
parent
0f384e5cf2
commit
f8cc92fd6d
|
@ -1,19 +1,24 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, libpipeline, db, groff }:
|
{ stdenv, fetchurl, pkgconfig, libpipeline, db, groff }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "man-db-2.7.5";
|
name = "man-db-2.7.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://savannah/man-db/${name}.tar.xz";
|
url = "mirror://savannah/man-db/${name}.tar.xz";
|
||||||
sha256 = "056a3il7agfazac12yggcg4gf412yq34k065im0cpfxbcw6xskaw";
|
sha256 = "056a3il7agfazac12yggcg4gf412yq34k065im0cpfxbcw6xskaw";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig libpipeline db groff ];
|
outputs = [ "out" "doc" ];
|
||||||
|
outputMan = "out"; # users will want `man man` to work
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ libpipeline db groff ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--disable-setuid"
|
"--disable-setuid"
|
||||||
"--sysconfdir=/etc"
|
|
||||||
"--localstatedir=/var"
|
"--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-systemdtmpfilesdir=\${out}/lib/tmpfiles.d"
|
||||||
"--with-eqn=${groff}/bin/eqn"
|
"--with-eqn=${groff}/bin/eqn"
|
||||||
"--with-neqn=${groff}/bin/neqn"
|
"--with-neqn=${groff}/bin/neqn"
|
||||||
|
@ -23,15 +28,9 @@ stdenv.mkDerivation rec {
|
||||||
"--with-tbl=${groff}/bin/tbl"
|
"--with-tbl=${groff}/bin/tbl"
|
||||||
];
|
];
|
||||||
|
|
||||||
installFlags = [ "DESTDIR=\${out}" ];
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
postInstall = ''
|
doCheck = true;
|
||||||
mv $out/$out/* $out
|
|
||||||
DIR=$out/$out
|
|
||||||
while rmdir $DIR 2>/dev/null; do
|
|
||||||
DIR="$(dirname "$DIR")"
|
|
||||||
done
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://man-db.nongnu.org";
|
homepage = "http://man-db.nongnu.org";
|
||||||
|
|
Loading…
Reference in a new issue