mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-11 00:27:06 +00:00

We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
39 lines
828 B
Nix
39 lines
828 B
Nix
{ 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 = "Httperf HTTP load generator";
|
|
homepage = "https://github.com/httperf/httperf";
|
|
maintainers = [ ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
mainProgram = "httperf";
|
|
};
|
|
|
|
}
|