1 { lib, stdenv, fetchurl, pkg-config, popt, libuuid, liburcu, lttng-ust, kmod, libxml2 }:
3 stdenv.mkDerivation rec {
8 url = "https://lttng.org/files/lttng-tools/${pname}-${version}.tar.bz2";
9 sha256 = "sha256-4S/lZjyvKtOne2BThRc9Tik33SFm2uecdPBkS/I5mK0=";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ popt libuuid liburcu lttng-ust libxml2 kmod ];
15 enableParallelBuilding = true;
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 ];