nixpkgs-suyu/pkgs/tools/networking/oha/default.nix

31 lines
848 B
Nix
Raw Normal View History

2021-09-09 16:03:45 +02:00
{ fetchFromGitHub, lib, pkg-config, rustPlatform, stdenv, openssl, Security }:
rustPlatform.buildRustPackage rec {
pname = "oha";
2021-10-15 13:54:15 +02:00
version = "0.4.7";
2021-09-09 16:03:45 +02:00
src = fetchFromGitHub {
owner = "hatoo";
repo = pname;
rev = "v${version}";
2021-10-15 13:54:15 +02:00
sha256 = "sha256-/gcNVTfLJKA5qzRgAqFSlSI618QBsJTxFE1doOKR7e8=";
2021-09-09 16:03:45 +02:00
};
2021-10-15 13:54:15 +02:00
cargoSha256 = "sha256-o5VKj69Wp7zLR3TS+wNA0D8nP6Cynlr4KtW4JSUm0VE=";
2021-09-09 16:03:45 +02:00
nativeBuildInputs = lib.optional stdenv.isLinux pkg-config;
buildInputs = lib.optional stdenv.isLinux openssl
++ lib.optional stdenv.isDarwin Security;
# tests don't work inside the sandbox
doCheck = false;
meta = with lib; {
description = "HTTP load generator inspired by rakyll/hey with tui animation";
homepage = "https://github.com/hatoo/oha";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}