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

34 lines
943 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, php, which, gnused, makeWrapper, gnumake, gcc, callPackage }:
2019-06-02 14:09:54 +00:00
stdenv.mkDerivation rec {
pname = "phoronix-test-suite";
2021-02-20 01:39:06 +00:00
version = "10.2.2";
2019-06-02 14:09:54 +00:00
src = fetchurl {
url = "https://phoronix-test-suite.com/releases/${pname}-${version}.tar.gz";
2021-02-20 01:39:06 +00:00
sha256 = "sha256-g5hUmsn01Msopxzmi/G4LcZISXMD2wFqreaHMkFzF1Y=";
2019-06-02 14:09:54 +00:00
};
buildInputs = [ php ];
nativeBuildInputs = [ which gnused makeWrapper ];
installPhase = ''
./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 ]}
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;
};
}