2019-09-26 09:31:21 +01:00
|
|
|
{ stdenv, fetchurl, enableShared ? true }:
|
2014-05-26 00:25:28 +01:00
|
|
|
|
2019-09-26 09:31:21 +01:00
|
|
|
stdenv.mkDerivation (rec {
|
2018-06-26 08:02:31 +01:00
|
|
|
version = "4.10.1";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libpfm";
|
2014-05-26 00:25:28 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/perfmon2/libpfm4/${pname}-${version}.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"
|
2019-01-31 18:50:53 +00:00
|
|
|
"ARCH=${stdenv.hostPlatform.uname.processor}"
|
|
|
|
"SYS=${stdenv.hostPlatform.uname.system}"
|
2018-11-20 21:44:23 +00:00
|
|
|
];
|
|
|
|
|
2019-10-29 23:53:51 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
2018-09-24 16:42:57 +01:00
|
|
|
|
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
|
|
|
};
|
2019-09-26 09:31:21 +01:00
|
|
|
} // stdenv.lib.optionalAttrs ( ! enableShared )
|
|
|
|
{
|
|
|
|
CONFIG_PFMLIB_SHARED = "n";
|
2015-05-30 14:14:10 +01:00
|
|
|
}
|
2019-09-26 09:31:21 +01:00
|
|
|
)
|