a073f266d4
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/lttng-tools/versions. These checks were done: - built on NixOS - /nix/store/dkn45wpwlqz4afidp3f2z9gf4a2k331a-lttng-tools-2.10.4/bin/lttng passed the binary check. - /nix/store/dkn45wpwlqz4afidp3f2z9gf4a2k331a-lttng-tools-2.10.4/bin/lttng-crash passed the binary check. - /nix/store/dkn45wpwlqz4afidp3f2z9gf4a2k331a-lttng-tools-2.10.4/bin/lttng-relayd passed the binary check. - /nix/store/dkn45wpwlqz4afidp3f2z9gf4a2k331a-lttng-tools-2.10.4/bin/lttng-sessiond passed the binary check. - 4 of 4 passed binary check by having a zero exit code. - 2 of 4 passed binary check by having the new version present in output. - found 2.10.4 with grep in /nix/store/dkn45wpwlqz4afidp3f2z9gf4a2k331a-lttng-tools-2.10.4 - directory tree listing: https://gist.github.com/e4d67a251f6e4d55bef4903a618d4c77 - du listing: https://gist.github.com/5a95c60b995446339306ed79d3eee027
24 lines
676 B
Nix
24 lines
676 B
Nix
{ stdenv, fetchurl, pkgconfig, popt, libuuid, liburcu, lttng-ust, kmod, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lttng-tools-${version}";
|
|
version = "2.10.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://lttng.org/files/lttng-tools/${name}.tar.bz2";
|
|
sha256 = "1p3y7p8m5i5f8qvsib4da2m41rkw7pamvsngplh7wspgvg0zxvay";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ popt libuuid liburcu lttng-ust libxml2 kmod ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Tracing tools (kernel + user space) for Linux";
|
|
homepage = https://lttng.org/;
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
|
|
}
|