Add The Little Brother's Database (lbdb) package

This commit is contained in:
Jean-Alexandre Peyroux 2013-08-27 09:28:36 +02:00
parent eba178ad52
commit d0f40f17b8
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ 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/";
description = "The Little Brother's Database (lbdb)";
};
}

View file

@ -8114,6 +8114,7 @@ let
};
mutt = callPackage ../applications/networking/mailreaders/mutt { };
lbdb = callPackage ../tools/misc/lbdb { };
ruby_gpgme = callPackage ../development/libraries/ruby_gpgme {
ruby = ruby19;