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/rolling/lttngpy/default.nix

27 lines
1,009 B
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, python3, rpyutils }:
buildRosPackage {
pname = "ros-rolling-lttngpy";
version = "8.5.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ros2_tracing-release/archive/release/rolling/lttngpy/8.5.0-1.tar.gz";
name = "8.5.0-1.tar.gz";
sha256 = "0b904dd7aba63e189758d0b7085499c5f227a7bbf5bf09b0b3f74c5afe3f0e54";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake pkg-config pybind11-vendor python3 ];
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ lttng-tools rpyutils ];
nativeBuildInputs = [ ament-cmake pkg-config ];
meta = {
description = "liblttng-ctl Python bindings";
license = with lib.licenses; [ asl20 ];
};
}