2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-12-27 13:14:54 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-pytest, ament-lint-auto, ament-lint-common, lttng-tools, pkg-config, pybind11-vendor, python-cmake-module, rpyutils }:
|
2024-05-24 14:00:52 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-lttngpy";
|
2024-12-27 13:14:54 +00:00
|
|
|
version = "8.2.3-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-12-27 13:14:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/ros2_tracing-release/archive/release/jazzy/lttngpy/8.2.3-1.tar.gz";
|
|
|
|
name = "8.2.3-1.tar.gz";
|
|
|
|
sha256 = "511030ac52953ecb658d0fa953311b3696b4a6b486eb41242495761d343d6fd4";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-12-27 13:14:54 +00:00
|
|
|
buildInputs = [ ament-cmake pkg-config pybind11-vendor python-cmake-module ];
|
2024-05-24 14:00:52 +00:00
|
|
|
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ lttng-tools rpyutils ];
|
2024-12-27 13:14:54 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake pkg-config python-cmake-module ];
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "liblttng-ctl Python bindings";
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|