mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
e69cc136ec
Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
26 lines
599 B
Nix
26 lines
599 B
Nix
{ 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;
|
|
};
|
|
}
|