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

52 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, perl, finger_bsd
2017-10-14 19:47:13 +00:00
, abook ? null
, gnupg ? null
, goobook ? null
, khard ? null
2018-01-20 07:55:00 +00:00
, mu ? null
2017-10-14 19:47:13 +00:00
}:
let
perl' = perl.withPackages (p: with p; [ ConvertASN1 perlldap AuthenSASL ]);
in
2021-07-14 15:10:11 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "lbdb";
2021-07-14 15:10:11 +00:00
version = "0.48.1";
2013-08-28 07:56:08 +00:00
src = fetchurl {
url = "https://www.spinnaker.de/lbdb/download/lbdb_${version}.tar.gz";
sha256 = "1gr5l2fr9qbdccga8bhsrpvz6jxigvfkdxrln9wyf2xpps5cdjxh";
2013-08-28 07:56:08 +00:00
};
buildInputs = [ goobook perl' ]
++ lib.optional (!stdenv.isDarwin) finger_bsd
++ lib.optional (abook != null) abook
++ lib.optional (gnupg != null) gnupg
++ lib.optional (goobook != null) goobook
++ lib.optional (khard != null) khard
++ lib.optional (mu != null) mu;
2017-10-14 19:47:13 +00:00
configureFlags = [ ]
++ lib.optional (abook != null) "--with-abook"
++ lib.optional (gnupg != null) "--with-gpg"
++ lib.optional (goobook != null) "--with-goobook"
++ lib.optional (khard != null) "--with-khard"
++ lib.optional (mu != null) "--with-mu";
2017-10-14 19:47:13 +00:00
2019-05-22 06:00:56 +00:00
patches = [ ./add-methods-to-rc.patch
# fix undefined exec_prefix. Remove with the next release
(fetchpatch {
url = "https://github.com/RolandRosenfeld/lbdb/commit/60b7bae255011f59212d96adfbded459d6a27129.patch";
sha256 = "129zg086glmlalrg395jq8ljcp787dl3rxjf9v7apsd8mqfdkl2v";
excludes = [ "debian/changelog" ];
})
];
meta = with lib; {
homepage = "https://www.spinnaker.de/lbdb/";
2017-11-12 15:03:06 +00:00
license = licenses.gpl2;
platforms = platforms.all;
description = "The Little Brother's Database";
2019-05-22 06:00:56 +00:00
maintainers = [ maintainers.kaiha maintainers.bfortz ];
2013-08-28 07:56:08 +00:00
};
}