My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/networking/httperf/default.nix

37 lines
817 B

{ lib, stdenv, fetchFromGitHub, autoreconfHook, openssl }:
stdenv.mkDerivation rec {
pname = "httperf";
version = "0.9.1";
src = fetchFromGitHub {
repo = pname;
owner = pname;
rev = "3209c7f9b15069d4b79079e03bafba5b444569ff";
sha256 = "0p48z9bcpdjq3nsarl26f0xbxmqgw42k5qmfy8wv5bcrz6b3na42";
};
nativeBuildInputs = [ autoreconfHook ];
propagatedBuildInputs = [ openssl ];
configurePhase = ''
autoreconf -i
mkdir -pv build
cd build
../configure
'';
installPhase = ''
mkdir -vp $out/bin
mv -v src/httperf $out/bin
'';
meta = with lib; {
description = "The httperf HTTP load generator";
homepage = "https://github.com/httperf/httperf";
maintainers = with maintainers; [ ];
license = licenses.gpl2;
platforms = platforms.all;
};
}