Unverified Commit 937aae9b authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

Merge pull request #315959 from MarcFontaine/master

adif-multitool: init at 0.1.12-rc1
parents 78064e03 057ff143
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ 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";
  };
}