nixpkgs/pkgs/development/libraries/libpfm/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2019-09-26 01:31:21 -07:00
{ stdenv, fetchurl, enableShared ? true }:
2014-05-25 16:25:28 -07:00
2019-09-26 01:31:21 -07:00
stdenv.mkDerivation (rec {
2018-06-26 00:02:31 -07:00
version = "4.10.1";
pname = "libpfm";
2014-05-25 16:25:28 -07:00
src = fetchurl {
url = "mirror://sourceforge/perfmon2/libpfm4/${pname}-${version}.tar.gz";
2018-06-26 00:02:31 -07:00
sha256 = "0jabhjx77yppr7x38bkfww6n2a480gj62rw0qp7prhdmg19mf766";
2014-05-25 16:25:28 -07:00
};
2018-11-20 13:44:23 -08:00
makeFlags = [
2018-12-13 10:58:01 -08:00
"PREFIX=${placeholder "out"}"
"LDCONFIG=true"
"ARCH=${stdenv.hostPlatform.uname.processor}"
"SYS=${stdenv.hostPlatform.uname.system}"
2018-11-20 13:44:23 -08:00
];
2019-10-29 16:53:51 -07:00
NIX_CFLAGS_COMPILE = "-Wno-error";
2018-09-24 08:42:57 -07:00
2015-05-30 06:14:10 -07:00
meta = with stdenv.lib; {
2014-05-25 16:25:28 -07: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 06:14:10 -07:00
license = licenses.gpl2;
maintainers = [ maintainers.pierron ];
2018-06-19 09:55:23 -07:00
platforms = platforms.linux;
2014-05-25 16:25:28 -07:00
};
2019-09-26 01:31:21 -07:00
} // stdenv.lib.optionalAttrs ( ! enableShared )
{
CONFIG_PFMLIB_SHARED = "n";
2015-05-30 06:14:10 -07:00
}
2019-09-26 01:31:21 -07:00
)