meg: init at 0.3.0

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
This commit is contained in:
averagebit 2024-01-30 01:24:18 +00:00
parent 4c4a215964
commit e69cc136ec
No known key found for this signature in database
GPG key ID: 202C2696DF698259

View file

@ -0,0 +1,25 @@
{ 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;
};
}