mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
a0753151fa
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/phoronix-test-suite/versions
29 lines
858 B
Nix
29 lines
858 B
Nix
{ stdenv, fetchurl, php, which, gnused, makeWrapper, gnumake, gcc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "phoronix-test-suite";
|
|
version = "9.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://phoronix-test-suite.com/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "056f2z1ssr2z7qnacq5aihpnawl05blbbw0bv64pkrkl0wss85x1";
|
|
};
|
|
|
|
buildInputs = [ php ];
|
|
nativeBuildInputs = [ which gnused makeWrapper ];
|
|
|
|
installPhase = ''
|
|
./install-sh $out
|
|
wrapProgram $out/bin/phoronix-test-suite \
|
|
--set PHP_BIN ${php}/bin/php \
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ gnumake gcc ]}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open-Source, Automated Benchmarking";
|
|
homepage = https://www.phoronix-test-suite.com/;
|
|
maintainers = with maintainers; [ davidak ];
|
|
license = licenses.gpl3;
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|