about summary refs log tree commit diff
path: root/pkgs/tools/misc/lbdb/default.nix
blob: a26348f8f0ff4181208550aaa719ba0c521ee268 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, perl, finger_bsd }:

let
  version = "0.38";
in

stdenv.mkDerivation {
  name = "lbdb-${version}";
  src = fetchurl {
    url = "http://www.spinnaker.de/debian/lbdb_${version}.tar.gz";
    md5 = "a8e65f1400c90818ff324dc4fd67eba2";
  };

  buildInputs = [ perl finger_bsd ];

  meta = {
    homepage = "http://www.spinnaker.de/lbdb/";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.all;
    description = "The Little Brother's Database (lbdb)";
  };
}