about summary refs log tree commit diff
path: root/pkgs/tools/misc/man-db
AgeCommit message (Collapse)AuthorFilesLines
2022-11-27man-db: 2.11.0 -> 2.11.1Vladimír Čunát1-2/+2
https://gitlab.com/man-db/man-db/-/blob/2.11.1/NEWS.md
2022-11-13man-db: 2.10.2 -> 2.11.0Ingo Blechschmidt1-2/+2
2022-10-10treewide: optional -> optionals where the argument is a listArtturin1-1/+1
the argument to optional should not be list
2022-07-24man-db: add gzip to the PATH of the executable wrapperShamrock Lee1-1/+2
2022-07-24man-db: use lib.makeBinPath when wrappingShamrock Lee1-2/+1
2022-04-20man-db: fix cross enable strictDepsArtturin1-18/+7
verified with diffoscope
2022-04-17man-db: fix after rebaseDavHau2-19/+14
2022-04-17Update pkgs/tools/misc/man-db/default.nixDavHau1-1/+1
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-04-17man-db: use autoreconfHook;DavHau1-4/+1
2022-04-17man-db: add support for zstdDavHau2-1/+28
2022-03-24man: 2.10.1 -> 2.10.2R. Ryantm1-2/+2
2022-02-12man: 2.9.4 -> 2.10.1R. Ryantm1-2/+2
2021-12-31nixos/tests/man: test common functionality of both man implssternenseemann1-1/+5
2021-08-02man-db: replace name with pname&versionFelix Buehler1-2/+3
2021-07-18man-db: add meta.mainProgramKid1-0/+1
2021-02-20man: 2.9.3 -> 2.9.4R. RyanTM1-2/+2
2021-01-16pkgs/tools: pkgconfig -> pkg-configBen Siraphob1-2/+2
2021-01-15pkgs/tools: stdenv.lib -> libBen Siraphob1-3/+3
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-07-05man: 2.9.2 -> 2.9.3R. RyanTM1-2/+2
2020-06-18man-db: remove NixOS-specific configurationrnhmjoj2-5/+42
When using --with-config-file, all man-db programs completely ignore the systemwide configuration in /etc/man_db.conf: it means on NixOS there is no way to change the configuration without rebuilding man-db, which in turn causes a mass-rebuild. To solve this problem this commit removes the NixOS-specific configuration in man-db, which wasn't the appropriate place to begin with: the package is expected to work on non-NixOS systems as well. Also a small patch now ensure /etc/man_db.conf is used, if available, before the bundled configuration.
2020-06-13man: 2.9.0 -> 2.9.2R. RyanTM1-2/+2
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-12-31man: 2.8.7 -> 2.9.0R. RyanTM1-2/+2
2019-11-03man: 2.8.6.1 -> 2.8.7R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/man-db/versions
2019-09-09man-db: set less as default pagerMatthew Bauer1-0/+1
This is the default on most systems, most users want this one. The value can still be overriden with the “PAGER” value.
2019-08-24man-db: handle building on darwinMatthew Bauer1-1/+5
this needs some weird manual autoconf settings to work. Most likely some test is giving false positives, but I cannot figure out how.
2019-08-15man-db: correct man_db.conf defaultsMatthew Bauer1-3/+12
2019-08-15man-db: 2.7.5 -> 2.8.6.1Matthew Bauer1-4/+6
2019-08-15man-db: don’t list checkInputs twiceMatthew Bauer1-2/+1
2019-08-02Update default.nixZaoqi1-1/+1
2018-03-25man-db: disable tests w/musl as simplest solutionWill Dietz1-1/+1
2018-02-13man-db: fix crossWill Dietz1-3/+17
2017-11-19man-db: explicitly pass section stringPhilipp Gesang1-0/+4
Work around a bug in the autoconf setup of man-db: The list of default sections does not include section 0 (zero) despite ``./configure --help`` advertising it. This causes header man pages (e. g. time.h from package posix_man_pages) to be ignored by man(1): $ file /run/current-system/sw/share/man/man0p/time.h.0p.gz /run/current-system/sw/share/man/man0p/time.h.0p.gz: gzip compressed data, from Unix $ man 0p time.h No manual entry for 0p No manual entry for time.h Override the default (as defined in m4/man-arg-sections.m4) until this is fixed upstream.
2017-08-01pkgs: refactor needless quoting of homepage meta attribute (#27809)Silvan Mosberger1-1/+1
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
2016-12-30man-db: make apropos search and not just behave like whatisBenno Fünfstück1-2/+5
Before this fix, apropos behaved exactly like whatis and looked for an exact match. Now, it actually provides the apropos-functionality of searching.
2016-10-11man-db: wrap groff instead of compiling inProfpatsch1-9/+8
Some manpages, e.g. `systemd.time` were broken in a way that they were rendered from the beginning after part of the page, and then only lasted for maybe a third of their length. So we just add groff in the wrapper instead of the configure phase like every other distribution seems to do, and that fixes it. Patch by @Mic92. Fixes #19323.
2016-09-12mandb: fix aproposRam Kromberg1-0/+6
2016-09-06man-db: set troff command correctly (#18333)Ram Kromberg1-0/+1
Signed-off-by: Ram Kromberg <ramkromberg@mail.com>
2016-09-01Disable bunch of non-compiling packages on DarwinTuomas Tynkkynen1-1/+1
These ones have a "Last successful build" timestamp in the 2014s or 2015s. Presumably no one will notice if we now stop building them. softether_4_18 2015-09-20 http://hydra.nixos.org/build/39418483 lensfun 2014-09-30 http://hydra.nixos.org/build/39394104 net_snmp 2015-09-20 http://hydra.nixos.org/build/39410553 djview 2015-08-11 http://hydra.nixos.org/build/39413233 libmusicbrainz2 2015-09-20 http://hydra.nixos.org/build/39410106 fox_1_6 2014-05-07 http://hydra.nixos.org/build/39410858 libofx 2015-09-24 http://hydra.nixos.org/build/39423507 yacas 2014-09-30 http://hydra.nixos.org/build/39393150 iomelt 2014-09-30 http://hydra.nixos.org/build/39408486 softether 2015-09-20 http://hydra.nixos.org/build/39425800 mp4v2 2014-09-30 http://hydra.nixos.org/build/39421899 virtuoso7 2014-09-21 http://hydra.nixos.org/build/39415206 man_db 2015-04-23 http://hydra.nixos.org/build/39404236 libdiscid 2014-09-30 http://hydra.nixos.org/build/39412202 zabbix22.agent 2014-09-21 http://hydra.nixos.org/build/39412149 vidalia 2015-08-06 http://hydra.nixos.org/build/39411500 libmtp 2015-09-20 http://hydra.nixos.org/build/39419199 wxGTK29 2015-09-20 http://hydra.nixos.org/build/39415296 ncmpcpp 2015-11-06 http://hydra.nixos.org/build/39404455 libtorrent 2014-09-21 http://hydra.nixos.org/build/39394646 shishi 2014-03-21 http://hydra.nixos.org/build/39418874 ocaml_3_12_1 2014-09-30 http://hydra.nixos.org/build/39392996 djview4 2015-08-11 http://hydra.nixos.org/build/39427799 vimNox 2014-05-23 http://hydra.nixos.org/build/39397012 ttfautohint 2015-08-06 http://hydra.nixos.org/build/39398330 libraw 2015-09-24 http://hydra.nixos.org/build/39402271 wxGTK30 2015-09-20 http://hydra.nixos.org/build/39401871 sbcl_1_2_5 2015-09-20 http://hydra.nixos.org/build/39426091 prover9 2014-09-30 http://hydra.nixos.org/build/39406476 rcs 2015-08-25 http://hydra.nixos.org/build/39392037 gpac 2015-09-24 http://hydra.nixos.org/build/39399470 virtuoso6 2014-09-30 http://hydra.nixos.org/build/39398651 xlslib 2015-09-24 http://hydra.nixos.org/build/39410387 ucommon 2015-03-27 http://hydra.nixos.org/build/39414040 commoncpp2 2014-09-30 http://hydra.nixos.org/build/39420117 virtuoso 2014-09-21 http://hydra.nixos.org/build/39399978 miniHttpd 2014-09-30 http://hydra.nixos.org/build/39392925 mpack 2014-09-26 http://hydra.nixos.org/build/39399535 nbd 2014-09-26 http://hydra.nixos.org/build/39401367 newsbeuter-dev 2014-07-29 http://hydra.nixos.org/build/39406259 gimp_2_8 2015-09-20 http://hydra.nixos.org/build/39436271 gimp 2015-09-20 http://hydra.nixos.org/build/39435976 zabbix20.agent 2014-09-30 http://hydra.nixos.org/build/39393242 gst_all_1.gst-plugins-good 2015-09-20 http://hydra.nixos.org/build/39408506 ocaml_4_00_1 2014-09-30 http://hydra.nixos.org/build/39399526 inadyn 2014-09-30 http://hydra.nixos.org/build/39426389 gst_all_1.gst-plugins-bad 2015-09-20 http://hydra.nixos.org/build/39392970 zabbix.agent 2014-09-30 http://hydra.nixos.org/build/39421412 cmake-2_8 2015-09-24 http://hydra.nixos.org/build/39399443 liblastfm 2015-08-06 http://hydra.nixos.org/build/39421812 newsbeuter 2014-07-29 http://hydra.nixos.org/build/39396605 sdcv 2014-09-26 http://hydra.nixos.org/build/39412928
2016-05-23man-db: clean the expression a bitVladimír Čunát1-13/+12
This solves the errors > can't open the manpath configuration file /etc/man_db.conf which were common e.g. for fish users.
2015-12-17man-db: use groff from closure, not PATHTobias Geerinckx-Rice1-1/+7
2015-11-07man-db: 2.7.3 -> 2.7.5William A. Kennington III1-2/+2
2015-09-10man-db: 2.7.2 -> 2.7.3Tobias Geerinckx-Rice1-2/+2
2015-08-18man-db: 2.7.1 -> 2.7.2William A. Kennington III1-2/+2
2015-05-16Revert "man-db: dont use libpipeline on darwin, causes build failure"Eric Seidel1-3/+1
This reverts commit ef66f1536dcfd9a78757436807de98be31e6cb48.
2015-05-15man-db: dont use libpipeline on darwin, causes build failureEric Seidel1-1/+3
2015-03-26man-db: 2.6.6 -> 2.7.1William A. Kennington III1-4/+17
2014-02-15man-db: Upgrade package from 2.5.1 -> 2.6.6William A. Kennington III2-129/+10
Additionally, remove the uneeded share.patch since share/man is now searched within upstream code.
2014-02-15Move all db4 packages to the default db5William A. Kennington III1-2/+2