meg: init at 0.3.0
Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
This commit is contained in:
parent
4c4a215964
commit
e69cc136ec
1 changed files with 25 additions and 0 deletions
25
pkgs/by-name/me/meg/package.nix
Normal file
25
pkgs/by-name/me/meg/package.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue