Ben Siraphob 690e6a2074
treewide: fix various descriptions to conform to style guide
- Articles at beginning of sentence
- Package names at beginning of sentence
- Final punctuation
- Capitalization
2025-07-21 10:39:47 -07:00

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";
};
}