versus: init at 1.0

This commit is contained in:
Marek Mahut 2020-10-30 13:14:25 +01:00
parent 557094a10c
commit 7a09bb523b
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "versus";
version = "1.0";
src = fetchFromGitHub {
owner = "INFURA";
repo = pname;
rev = "v${version}";
sha256 = "0j5mj9gwwvgx7r1svlg14dpcqlj8mhwlf7sampkkih6bv92qfzcd";
};
vendorSha256 = "1d12jcd8crxcgp5m8ga691wivim4cg8cbz4pzgxp0jhzg9jplpbv";
meta = with stdenv.lib; {
description = "Benchmark multiple API endpoints against each other";
homepage = "https://github.com/INFURA/versus";
license = licenses.mit;
maintainers = with maintainers; [ mmahut ];
};
}

View File

@ -7835,6 +7835,8 @@ in
verilog = callPackage ../applications/science/electronics/verilog {};
versus = callPackage ../applications/networking/versus { };
vgrep = callPackage ../tools/text/vgrep { };
vhd2vl = callPackage ../applications/science/electronics/vhd2vl { };