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

27 lines
817 B
Nix
Raw Normal View History

2014-05-25 23:25:28 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "4.9.0";
2014-05-25 23:25:28 +00:00
name = "libpfm-${version}";
src = fetchurl {
url = "mirror://sourceforge/perfmon2/libpfm4/${name}.tar.gz";
sha256 = "1qp4g4n6dw42p2w5rkwzdb7ynk8h7g5vg01ybpmvxncgwa7bw3yv";
2014-05-25 23:25:28 +00:00
};
installFlags = "DESTDIR=\${out} PREFIX= LDCONFIG=true";
2015-05-30 13:14:10 +00:00
meta = with stdenv.lib; {
2014-05-25 23:25:28 +00: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 13:14:10 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.pierron ];
platforms = platforms.all;
2014-05-25 23:25:28 +00:00
};
2015-05-30 13:14:10 +00:00
}