Merge pull request #315959 from MarcFontaine/master

adif-multitool: init at 0.1.12-rc1
This commit is contained in:
Masum Reza 2024-07-09 09:46:56 +05:30 committed by GitHub
commit 937aae9b73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "adif-multitool";
version = "0.1.12-rc1";
vendorHash = "sha256-h7Gr8qRz6K0xCvR8tGWTeEkwgMQOTZnbEEsda4aJpbc=";
src = fetchFromGitHub {
owner = "flwyd";
repo = "adif-multitool";
rev = "v${version}";
hash = "sha256-R0Hu/yWiLUpH9qkVQuJw4bRvDeISjg67rZJLeUBPBbM=";
};
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";
};
}