Some checks failed
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
40 lines
778 B
Nix
40 lines
778 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
notmuch,
|
|
openssl,
|
|
pkg-config,
|
|
sqlite,
|
|
xapian,
|
|
zlib,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
version = "7";
|
|
pname = "muchsync";
|
|
passthru = {
|
|
inherit version;
|
|
};
|
|
src = fetchurl {
|
|
url = "http://www.muchsync.org/src/${pname}-${version}.tar.gz";
|
|
hash = "sha256-+D4vb80O9IE0df3cjTkoVoZlTaX0FWWh6ams14Gjvqw=";
|
|
};
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
notmuch
|
|
openssl
|
|
sqlite
|
|
xapian
|
|
zlib
|
|
];
|
|
XAPIAN_CONFIG = "${xapian}/bin/xapian-config";
|
|
meta = {
|
|
description = "Synchronize maildirs and notmuch databases";
|
|
mainProgram = "muchsync";
|
|
homepage = "http://www.muchsync.org/";
|
|
platforms = lib.platforms.unix;
|
|
maintainers = [ ];
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|