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
27 lines
625 B
Nix
27 lines
625 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "adif-multitool";
|
|
version = "0.1.20";
|
|
|
|
vendorHash = "sha256-U9BpTDHjUZicMjKeyxyM/eOxJeAY2DMQMHOEMiCeN/U=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flwyd";
|
|
repo = "adif-multitool";
|
|
tag = "v${version}";
|
|
hash = "sha256-qeAH8UTyEZn8As3wTjluONpjeT/5l9zicN5+8uwnbLo=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Command-line program for working with ham logfiles";
|
|
homepage = "https://github.com/flwyd/adif-multitool";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ mafo ];
|
|
mainProgram = "adifmt";
|
|
};
|
|
}
|