Merge pull request #102147 from mmahut/versus

versus: init at 1.0
This commit is contained in:
Sandro 2020-11-24 23:05:54 +01:00 committed by GitHub
commit e4490f9313
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

@ -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 ];
};
}

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