Add The Little Brother's Database (lbdb) package
This commit is contained in:
parent
eba178ad52
commit
d0f40f17b8
2 changed files with 21 additions and 0 deletions
20
pkgs/tools/misc/lbdb/default.nix
Normal file
20
pkgs/tools/misc/lbdb/default.nix
Normal 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)";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue