about summary refs log tree commit diff
path: root/pkgs/tools/misc/man/default.nix
blob: a8b383774598a4a01719e96c7cf5c7fa2988a2cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl, db4, groff}:
 
stdenv.mkDerivation {
  name = "man_db-2.4.3";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/man-db-2.4.3.tar.gz;
    md5 = "30814a47f209f43b152659ba51fc7937";
  };
  buildInputs = [db4 groff];
}