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
33 lines
856 B
Nix
33 lines
856 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromSourcehut,
|
|
nix-update-script,
|
|
}:
|
|
buildGoModule {
|
|
pname = "addr-book-combine";
|
|
version = "0-unstable-2022-12-14";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~jcc";
|
|
repo = "addr-book-combine";
|
|
rev = "11696f4726b981c774ad1d4858f1a935ac71e9ac";
|
|
hash = "sha256-SENur3p5LxMNnjo/+qiVdrEs+i+rI1PT1wYYdLLqWrg=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [ "--version=branch" ];
|
|
};
|
|
|
|
meta = {
|
|
description = "Combine multiple aerc-style address books into a single address book";
|
|
homepage = "https://jasoncarloscox.com/creations/addr-book-combine/";
|
|
downloadPage = "https://git.sr.ht/~jcc/addr-book-combine";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "addr-book-combine";
|
|
maintainers = with lib.maintainers; [ antonmosich ];
|
|
};
|
|
}
|