1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

perf-tools: add license

This commit is contained in:
Markus Kowalewski 2018-08-30 21:46:29 +02:00
parent 11bb3c134f
commit 74470d51c3
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -34,10 +34,11 @@ stdenv.mkDerivation {
mv $d/man $out/share/
'';
meta = {
platforms = lib.platforms.linux;
meta = with stdenv.lib; {
platforms = platforms.linux;
homepage = https://github.com/brendangregg/perf-tools;
description = "Performance analysis tools based on Linux perf_events (aka perf) and ftrace";
maintainers = [ lib.maintainers.eelco ];
maintainers = [ maintainers.eelco ];
license = licenses.gpl2;
};
}