nixpkgs/pkgs/tools/misc/lbdb/default.nix

23 lines
543 B
Nix
Raw Normal View History

{ stdenv, fetchurl, perl, finger_bsd }:
let
2013-08-28 07:56:08 +00:00
version = "0.38";
in
stdenv.mkDerivation {
2013-08-28 07:56:08 +00:00
name = "lbdb-${version}";
src = fetchurl {
url = "http://www.spinnaker.de/debian/lbdb_${version}.tar.gz";
md5 = "a8e65f1400c90818ff324dc4fd67eba2";
};
2014-05-05 01:40:24 +00:00
buildInputs = [ perl ] ++ stdenv.lib.optional (!stdenv.isDarwin) finger_bsd;
2013-08-28 07:56:08 +00:00
meta = {
homepage = "http://www.spinnaker.de/lbdb/";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.all;
description = "The Little Brother's Database (lbdb)";
};
}