goperf: init at unstable-2022-09-20

This commit is contained in:
Peder Bergebakken Sundt 2022-10-15 22:39:42 +02:00
parent d9a1414346
commit 06d89dac20
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchgit
}:
buildGoModule rec {
pname = "goperf";
version = "unstable-2022-09-20";
src = fetchgit {
url = "https://go.googlesource.com/perf";
rev = "e8d778a60d07b209c499efb221f76d51f63c6042";
hash = "sha256-UuP528n5uAWMJCakc8MP8wlmA6SwMO/IaIqR88pqL7c=";
};
vendorHash = "sha256-ZIkH3LBzrvqWEN6m4fpU2cmOXup9LLU3FiFooJJtiOk=";
meta = with lib; {
description = "Tools and packages for analyzing Go benchmark results";
homepage = "https://cs.opensource.google/go/x/perf";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ pbsds ];
};
}

View File

@ -2596,6 +2596,8 @@ with pkgs;
gopacked = callPackage ../applications/misc/gopacked { };
goperf = callPackage ../development/tools/goperf { };
gotktrix = callPackage ../applications/networking/instant-messengers/gotktrix { };
gucci = callPackage ../tools/text/gucci { };