push sheeet
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions
@@ -0,0 +1,11 @@
--- a/lbdb.rc.in
+++ b/lbdb.rc.in
@@ -40,7 +40,7 @@
# - m_vcf search a vcard (according to RFC2426) file.
# - m_khard search a CardDAV address book via khard
-METHODS="m_inmail m_passwd m_finger"
+METHODS="@MODULES@"
#
+70
View File
@@ -0,0 +1,70 @@
{
lib,
stdenv,
fetchurl,
perl,
bsd-finger,
withAbook ? true,
abook,
withGnupg ? true,
gnupg,
withGoobook ? true,
goobook,
withKhard ? true,
khard,
withMu ? true,
mu,
}:
let
perl' = perl.withPackages (
p: with p; [
AuthenSASL
ConvertASN1
IOSocketSSL
perlldap
]
);
in
stdenv.mkDerivation rec {
pname = "lbdb";
version = "0.56";
src = fetchurl {
url = "https://www.spinnaker.de/lbdb/download/lbdb-${version}.tar.gz";
sha256 = "sha256-uqaiO2E5TXkreyIeGWHZulcQYUyTJOj1mzXBJsK0504=";
};
buildInputs = [
perl'
]
++ lib.optional (!stdenv.hostPlatform.isDarwin) bsd-finger
++ lib.optional withAbook abook
++ lib.optional withGnupg gnupg
++ lib.optional withGoobook goobook
++ lib.optional withKhard khard
++ lib.optional withMu mu;
configureFlags =
[ ]
++ lib.optional withAbook "--with-abook"
++ lib.optional withGnupg "--with-gpg"
++ lib.optional withGoobook "--with-goobook"
++ lib.optional withKhard "--with-khard"
++ lib.optional withMu "--with-mu";
patches = [
./add-methods-to-rc.patch
];
meta = with lib; {
homepage = "https://www.spinnaker.de/lbdb/";
description = "Little Brother's Database";
license = licenses.gpl2Plus;
maintainers = with maintainers; [
kaiha
bfortz
];
platforms = platforms.all;
};
}