forked from mirrors/nixpkgs
32 lines
936 B
Nix
32 lines
936 B
Nix
{ fetchFromGitHub, lib, pkg-config, rustPlatform, stdenv, openssl, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "oha";
|
|
version = "0.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hatoo";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-P21rANxgreXu8vA1vsFCSkh1Irs67r3s33XT1dMFD7I=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-l6xQbZVrWF8Uw27datqvv9B3LoPtoaCnumo0gIjKdaA=";
|
|
|
|
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";
|
|
changelog = "https://github.com/hatoo/oha/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|