Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
625 B
Nix
Raw Normal View History

2024-05-27 18:41:43 +02:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "adif-multitool";
2025-02-16 12:31:13 +00:00
version = "0.1.20";
2024-05-27 18:41:43 +02:00
2025-01-09 23:20:19 +00:00
vendorHash = "sha256-U9BpTDHjUZicMjKeyxyM/eOxJeAY2DMQMHOEMiCeN/U=";
2024-05-27 18:41:43 +02:00
src = fetchFromGitHub {
owner = "flwyd";
repo = "adif-multitool";
2025-06-23 22:25:15 +00:00
tag = "v${version}";
2025-02-16 12:31:13 +00:00
hash = "sha256-qeAH8UTyEZn8As3wTjluONpjeT/5l9zicN5+8uwnbLo=";
2024-05-27 18:41:43 +02:00
};
meta = with lib; {
description = "Command-line program for working with ham logfiles";
2024-05-27 18:41:43 +02:00
homepage = "https://github.com/flwyd/adif-multitool";
license = licenses.asl20;
maintainers = with maintainers; [ mafo ];
mainProgram = "adifmt";
};
}