mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 13:53:05 +00:00
49 lines
1.0 KiB
Nix
49 lines
1.0 KiB
Nix
{ version, sha256 }:
|
|
|
|
{ lib, stdenv, fetchurl, pkg-config, liburcu, numactl, python3 }:
|
|
|
|
# NOTE:
|
|
# ./configure ...
|
|
# [...]
|
|
# LTTng-UST will be built with the following options:
|
|
#
|
|
# Java support (JNI): Disabled
|
|
# sdt.h integration: Disabled
|
|
# [...]
|
|
#
|
|
# Debian builds with std.h (systemtap).
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lttng-ust";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://lttng.org/files/lttng-ust/${pname}-${version}.tar.bz2";
|
|
inherit sha256;
|
|
};
|
|
|
|
outputs = [ "bin" "out" "dev" "devdoc" ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ numactl python3 ];
|
|
|
|
preConfigure = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
configureFlags = [ "--disable-examples" ];
|
|
|
|
propagatedBuildInputs = [ liburcu ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "LTTng Userspace Tracer libraries";
|
|
homepage = "https://lttng.org/";
|
|
license = with licenses; [ lgpl21Only gpl2Only mit ];
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
|
|
}
|