2014-02-04 23:34:31 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libpipeline, db, groff }:
|
2005-08-23 16:19:16 +02:00
|
|
|
|
2014-02-04 23:34:31 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "man-db-2.6.6";
|
2008-02-07 14:32:48 +01:00
|
|
|
|
2005-08-23 16:19:16 +02:00
|
|
|
src = fetchurl {
|
2014-02-04 23:34:31 +01:00
|
|
|
url = "mirror://savannah/man-db/${name}.tar.xz";
|
|
|
|
sha256 = "1hv6byj6sg6cp3jyf08gbmdm4pwhvd5hzmb94xl0w7prin6hzabx";
|
2005-08-23 16:19:16 +02:00
|
|
|
};
|
2008-02-07 14:32:48 +01:00
|
|
|
|
2014-02-04 23:34:31 +01:00
|
|
|
buildInputs = [ pkgconfig libpipeline db groff ];
|
2008-02-07 14:32:48 +01:00
|
|
|
|
|
|
|
configureFlags = ''
|
|
|
|
--disable-setuid
|
|
|
|
'';
|
|
|
|
|
2014-02-04 23:34:31 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "http://man-db.nongnu.org";
|
2008-02-07 14:32:48 +01:00
|
|
|
description = "An implementation of the standard Unix documentation system accessed using the man command";
|
2014-02-04 23:34:31 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.unix;
|
2008-02-07 14:32:48 +01:00
|
|
|
};
|
2005-08-23 16:19:16 +02:00
|
|
|
}
|