1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/lttngpy/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ 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 }:
buildRosPackage {
pname = "ros-jazzy-lttngpy";
version = "8.2.3-r1";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake pkg-config pybind11-vendor python-cmake-module ];
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ lttng-tools rpyutils ];
nativeBuildInputs = [ ament-cmake pkg-config python-cmake-module ];
meta = {
description = "liblttng-ctl Python bindings";
license = with lib.licenses; [ asl20 ];
};
}