1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-20 22:28:39 +03:00
nix-ros-overlay/dashing/py-trees-ros/default.nix
2019-11-07 17:46:51 -05:00

24 lines
1 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, unique-identifier-msgs, rclpy, py-trees, sensor-msgs, py-trees-ros-interfaces, rcl-interfaces, python3Packages, std-msgs, ros2topic }:
buildRosPackage {
pname = "ros-dashing-py-trees-ros";
version = "1.2.1-r2";
src = fetchurl {
url = "https://github.com/stonier/py_trees_ros-release/archive/release/dashing/py_trees_ros/1.2.1-2.tar.gz";
name = "1.2.1-2.tar.gz";
sha256 = "a46a34029b2af275f21b9809f97d69bb743c2c8589026fcdc1f161a15285ac91";
};
buildType = "ament_python";
buildInputs = [ unique-identifier-msgs rclpy ros2topic sensor-msgs python3Packages.setuptools py-trees-ros-interfaces rcl-interfaces std-msgs py-trees ];
propagatedBuildInputs = [ unique-identifier-msgs rclpy ros2topic sensor-msgs py-trees-ros-interfaces rcl-interfaces std-msgs py-trees ];
meta = {
description = ''ROS2 extensions and behaviours for py_trees.'';
license = with lib.licenses; [ bsdOriginal ];
};
}