3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/oha/default.nix

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

31 lines
848 B
Nix
Raw Normal View History

2021-09-09 15:03:45 +01:00
{ fetchFromGitHub, lib, pkg-config, rustPlatform, stdenv, openssl, Security }:
rustPlatform.buildRustPackage rec {
pname = "oha";
2022-01-07 14:29:23 +00:00
version = "0.5.0";
2021-09-09 15:03:45 +01:00
src = fetchFromGitHub {
owner = "hatoo";
repo = pname;
rev = "v${version}";
2022-01-07 14:29:23 +00:00
sha256 = "sha256-wCoBlbi4/EiTAA1xiZ/taVrokE0ECf8STAlA1sk/pm0=";
2021-09-09 15:03:45 +01:00
};
2022-01-07 14:29:23 +00:00
cargoSha256 = "sha256-tcORdyxGViUhKbtxVJaZ1G3uUpyr1pRLu5j8v52lMg8=";
2021-09-09 15:03:45 +01: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 ];
};
}