Merge pull request #869 from j4/master
Add The Little Brother's Database (lbdb) package
This commit is contained in:
commit
deecf7e1cb
22
pkgs/tools/misc/lbdb/default.nix
Normal file
22
pkgs/tools/misc/lbdb/default.nix
Normal file
@ -0,0 +1,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)";
|
||||||
|
};
|
||||||
|
}
|
@ -7927,6 +7927,8 @@ let
|
|||||||
|
|
||||||
lastwatch = callPackage ../applications/audio/lastwatch { };
|
lastwatch = callPackage ../applications/audio/lastwatch { };
|
||||||
|
|
||||||
|
lbdb = callPackage ../tools/misc/lbdb { };
|
||||||
|
|
||||||
lci = callPackage ../applications/science/logic/lci {};
|
lci = callPackage ../applications/science/logic/lci {};
|
||||||
|
|
||||||
ldcpp = callPackage ../applications/networking/p2p/ldcpp {
|
ldcpp = callPackage ../applications/networking/p2p/ldcpp {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user