papi: 5.6.0 -> 6.0.0.1

This commit is contained in:
Zhaofeng Li 2021-05-28 18:38:34 -07:00
parent fd26001ead
commit 1421309df4

View file

@ -2,19 +2,17 @@
, fetchurl
}:
stdenv.mkDerivation {
version = "5.6.0";
stdenv.mkDerivation rec {
version = "6.0.0.1";
pname = "papi";
src = fetchurl {
url = "https://bitbucket.org/icl/papi/get/papi-5-6-0-t.tar.gz";
sha256 = "13mngf9kl0y2wfxqvkad0smdaag7k8fvw82b4312gx62nwhc1i6r";
url = "https://bitbucket.org/icl/papi/get/papi-${lib.replaceStrings ["."] ["-"] version}-t.tar.gz";
sha256 = "1jd67yadyffzxwsqlylsi0bx8ishb0cgj2ziz1wdslaz6ylvyf9j";
};
NIX_CFLAGS_COMPILE = "-Wno-error=format-truncation";
preConfigure = ''
cd src
setSourceRoot = ''
sourceRoot=$(echo */src)
'';
doCheck = true;
@ -22,9 +20,9 @@ stdenv.mkDerivation {
meta = with lib; {
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;
platforms = platforms.linux;
maintainers = [ maintainers.costrouc ];
maintainers = with maintainers; [ costrouc zhaofengli ];
};
}