nixpkgs/pkgs/tools/networking/rewrk/default.nix
2023-01-08 23:30:25 -05:00

37 lines
835 B
Nix

{ lib
, rustPlatform
, fetchFromGitHub
, stdenv
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "rewrk";
version = "0.3.2";
src = fetchFromGitHub {
owner = "lnx-search";
repo = "rewrk";
rev = version;
hash = "sha256-Bqr5kmIIx+12hW4jpINcv0GBJBbMAkd4di/hZSXlT18=";
};
cargoLock.lockFile = ./Cargo.lock;
postPatch = ''
ln -s ${./Cargo.lock} Cargo.lock
'';
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
meta = with lib; {
description = "A more modern http framework benchmarker supporting HTTP/1 and HTTP/2 benchmarks";
homepage = "https://github.com/lnx-search/rewrk";
changelog = "https://github.com/lnx-search/rewrk/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}