mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
30 lines
856 B
Nix
30 lines
856 B
Nix
{ stdenv, fetchurl, php, which, gnused, makeWrapper, gnumake, gcc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "phoronix-test-suite-${version}";
|
|
version = "8.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://phoronix-test-suite.com/releases/${name}.tar.gz";
|
|
sha256 = "1l5wnj5d652dg02j7iy7n9ab7qrpclmgvyxnh1s6cdnnnspyxznn";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|