2014-05-26 00:25:28 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-06-26 08:02:31 +01:00
|
|
|
version = "4.10.1";
|
2014-05-26 00:25:28 +01:00
|
|
|
name = "libpfm-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/perfmon2/libpfm4/${name}.tar.gz";
|
2018-06-26 08:02:31 +01:00
|
|
|
sha256 = "0jabhjx77yppr7x38bkfww6n2a480gj62rw0qp7prhdmg19mf766";
|
2014-05-26 00:25:28 +01:00
|
|
|
};
|
|
|
|
|
2018-11-20 21:44:23 +00:00
|
|
|
makeFlags = [
|
2018-12-13 18:58:01 +00:00
|
|
|
"PREFIX=${placeholder "out"}"
|
|
|
|
"LDCONFIG=true"
|
2018-11-20 21:44:23 +00:00
|
|
|
"ARCH=${stdenv.targetPlatform.uname.processor}"
|
|
|
|
"SYS=${stdenv.targetPlatform.uname.system}"
|
|
|
|
];
|
|
|
|
|
2018-09-24 16:42:57 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error" ];
|
|
|
|
|
2015-05-30 14:14:10 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-05-26 00:25:28 +01:00
|
|
|
description = "Helper library to program the performance monitoring events";
|
|
|
|
longDescription = ''
|
|
|
|
This package provides a library, called libpfm4 which is used to
|
|
|
|
develop monitoring tools exploiting the performance monitoring
|
|
|
|
events such as those provided by the Performance Monitoring Unit
|
|
|
|
(PMU) of modern processors.
|
|
|
|
'';
|
2015-05-30 14:14:10 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.pierron ];
|
2018-06-19 17:55:23 +01:00
|
|
|
platforms = platforms.linux;
|
2014-05-26 00:25:28 +01:00
|
|
|
};
|
2015-05-30 14:14:10 +01:00
|
|
|
}
|