mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
25 lines
621 B
Nix
25 lines
621 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";
|
|
};
|
|
}
|