nixpkgs/pkgs/tools/misc/phoronix-test-suite/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
977 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, php, which, makeWrapper, gnumake, gcc, callPackage }:
2019-06-02 14:09:54 +00:00
stdenv.mkDerivation rec {
pname = "phoronix-test-suite";
2022-08-01 05:28:59 +00:00
version = "10.8.4";
2019-06-02 14:09:54 +00:00
src = fetchurl {
url = "https://phoronix-test-suite.com/releases/${pname}-${version}.tar.gz";
2022-08-01 05:28:59 +00:00
sha256 = "sha256-HyCS1TbAoxk+/FPkpQ887mXA7xp40x5UBPHGY//3t/Q=";
2019-06-02 14:09:54 +00:00
};
buildInputs = [ php ];
nativeBuildInputs = [ which makeWrapper ];
2019-06-02 14:09:54 +00:00
installPhase = ''
runHook preInstall
2019-06-02 14:09:54 +00:00
./install-sh $out
wrapProgram $out/bin/phoronix-test-suite \
--set PHP_BIN ${php}/bin/php \
2021-01-15 09:19:50 +00:00
--prefix PATH : ${lib.makeBinPath [ gnumake gcc ]}
runHook postInstall
2019-06-02 14:09:54 +00:00
'';
2019-12-06 20:04:09 +00:00
passthru.tests = {
simple-execution = callPackage ./tests.nix { };
};
meta = with lib; {
2019-06-02 14:09:54 +00:00
description = "Open-Source, Automated Benchmarking";
2020-02-29 09:27:19 +00:00
homepage = "https://www.phoronix-test-suite.com/";
2019-06-02 14:09:54 +00:00
maintainers = with maintainers; [ davidak ];
license = licenses.gpl3;
platforms = with platforms; unix;
};
}