26 lines
626 B
Nix
26 lines
626 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "adif-multitool";
|
|
version = "0.1.15";
|
|
|
|
vendorHash = "sha256-oyFL021J/cU+N+mQ6kW3vju39P/uGM6U58uqE9sxIOE=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flwyd";
|
|
repo = "adif-multitool";
|
|
rev = "v${version}";
|
|
hash = "sha256-zfJTEmjTomd2T/TkdNYZgIJBwx0PaByEkN/E2kgKHes=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|