trace-cmd: 2.9.5 -> 2.9.6

* trace-cmd: 2.9.5 -> 2.9.6 (#148944)

And update meta.licenses

The lib part is under LGPL-2.1
And use SPDX 3.0 license identifier

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
This commit is contained in:
R. RyanTM 2022-02-11 07:45:16 -08:00 committed by GitHub
parent b40ee5991e
commit b5090e841e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,12 +1,12 @@
{ lib, stdenv, fetchgit, pkg-config, asciidoc, xmlto, docbook_xsl, libxslt, libtraceevent, libtracefs }:
stdenv.mkDerivation rec {
pname = "trace-cmd";
version = "2.9.5";
version = "2.9.6";
src = fetchgit {
url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/";
rev = "trace-cmd-v${version}";
sha256 = "0kc5cldk5i7q2zr2nyz3mvs5v7w0km6lpx7g39sy3pmhshp0wqlq";
sha256 = "sha256-rI6zD54NoArQbSJOINu9hifj/DJehCcqBpGI0TeoDLA=";
};
# Don't build and install html documentation
@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "User-space tools for the Linux kernel ftrace subsystem";
homepage = "https://www.trace-cmd.org/";
license = licenses.gpl2;
license = with licenses; [ lgpl21Only gpl2Only ];
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice basvandijk ];
};