biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / lttng-tools / default.nix
blob127ab2c4b6714be8a439f07e4c2fa36776ef0227
1 { lib, stdenv, fetchurl, pkg-config, popt, libuuid, liburcu, lttng-ust, kmod, libxml2 }:
3 stdenv.mkDerivation rec {
4   pname = "lttng-tools";
5   version = "2.13.12";
7   src = fetchurl {
8     url = "https://lttng.org/files/lttng-tools/${pname}-${version}.tar.bz2";
9     sha256 = "sha256-4S/lZjyvKtOne2BThRc9Tik33SFm2uecdPBkS/I5mK0=";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ popt libuuid liburcu lttng-ust libxml2 kmod ];
15   enableParallelBuilding = true;
17   meta = with lib; {
18     description = "Tracing tools (kernel + user space) for Linux";
19     mainProgram = "lttng";
20     homepage = "https://lttng.org/";
21     license = with licenses; [ lgpl21Only gpl2Only ];
22     platforms = platforms.linux;
23     maintainers = [ maintainers.bjornfor ];
24   };