Unverified Commit 4b455dc2 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

Merge pull request #284885 from averagebit/add-meg

meg: init at 0.3.0
parents dab57478 e69cc136
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
  pname = "meg";
  version = "0.3.0";

  vendorHash = "sha256-kQsGRmK7Qqz36whd6RI7Gecj40MM0o/fgRv7a+4yGZI=";

  src = fetchFromGitHub {
    owner = "tomnomnom";
    repo = "meg";
    rev = "v${version}";
    hash = "sha256-uhfPNpvuuC9kBYUBCGE6X46TeZ5QxIcnDQ4HRrn2mT4=";
  };

  meta = with lib; {
    homepage = "https://github.com/tomnomnom/meg";
    description = "Fetch many paths for many hosts without flooding hosts";
    mainProgram = "meg";
    maintainers = with maintainers; [ averagebit ];
    license = licenses.mit;
  };
}