1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/iron/py-trees-ros-interfaces/default.nix

26 lines
1.1 KiB
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, ament-lint-common, diagnostic-msgs, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, unique-identifier-msgs }:
buildRosPackage {
pname = "ros-iron-py-trees-ros-interfaces";
version = "2.1.0-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/py_trees_ros_interfaces-release/archive/release/iron/py_trees_ros_interfaces/2.1.0-3.tar.gz";
name = "2.1.0-3.tar.gz";
sha256 = "c72c24b49beba8819a24701ecb9aed6b5048581e395a64d88a08b6d6a253ec46";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ action-msgs diagnostic-msgs geometry-msgs rosidl-default-runtime unique-identifier-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Interfaces used by py_trees_ros and py_trees_ros_tutorials.";
license = with lib.licenses; [ bsdOriginal ];
};
}