mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
goperf: init at unstable-2022-09-20
This commit is contained in:
parent
d9a1414346
commit
06d89dac20
2 changed files with 27 additions and 0 deletions
25
pkgs/development/tools/goperf/default.nix
Normal file
25
pkgs/development/tools/goperf/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue