Merge pull request #124223 from zhaofengli/papi6

This commit is contained in:
Sandro 2021-06-03 17:33:20 +02:00 committed by GitHub
commit 8c24fd2efa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,19 +2,17 @@
, fetchurl , fetchurl
}: }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
version = "5.6.0"; version = "6.0.0.1";
pname = "papi"; pname = "papi";
src = fetchurl { src = fetchurl {
url = "https://bitbucket.org/icl/papi/get/papi-5-6-0-t.tar.gz"; url = "https://bitbucket.org/icl/papi/get/papi-${lib.replaceStrings ["."] ["-"] version}-t.tar.gz";
sha256 = "13mngf9kl0y2wfxqvkad0smdaag7k8fvw82b4312gx62nwhc1i6r"; sha256 = "1jd67yadyffzxwsqlylsi0bx8ishb0cgj2ziz1wdslaz6ylvyf9j";
}; };
NIX_CFLAGS_COMPILE = "-Wno-error=format-truncation"; setSourceRoot = ''
sourceRoot=$(echo */src)
preConfigure = ''
cd src
''; '';
doCheck = true; doCheck = true;
@ -22,9 +20,9 @@ stdenv.mkDerivation {
meta = with lib; { meta = with lib; {
homepage = "https://icl.utk.edu/papi/"; homepage = "https://icl.utk.edu/papi/";
description = "PAPI provides the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors"; description = "Library providing access to various hardware performance counters";
license = licenses.bsdOriginal; license = licenses.bsdOriginal;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc zhaofengli ];
}; };
} }