nixpkgs/pkgs/tools/networking/hey/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
542 B
Nix
Raw Normal View History

{ buildGoModule, lib, fetchFromGitHub }:
2020-02-05 18:20:24 +03:00
buildGoModule rec {
pname = "hey";
2020-11-26 09:56:44 +03:00
version = "0.1.4";
2020-02-05 18:20:24 +03:00
src = fetchFromGitHub {
owner = "rakyll";
repo = pname;
rev = "v${version}";
2020-11-26 09:56:44 +03:00
sha256 = "0gsdksrzlwpba14a43ayyy41l1hxpw4ayjpvqyd4ycakddlkvgzb";
2020-02-05 18:20:24 +03:00
};
vendorHash = null;
2020-02-05 18:20:24 +03:00
meta = with lib; {
2020-02-05 18:20:24 +03:00
description = "HTTP load generator, ApacheBench (ab) replacement";
homepage = "https://github.com/rakyll/hey";
license = licenses.asl20;
maintainers = with maintainers; [ Br1ght0ne ];
2024-02-11 05:19:15 +03:00
mainProgram = "hey";
2020-02-05 18:20:24 +03:00
};
}