1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00
nix-ros-overlay/distros/eloquent/webots-ros2-demos/default.nix

24 lines
1,013 B
Nix

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, builtin-interfaces, pythonPackages, rclpy, std-msgs, webots-ros2-abb, webots-ros2-core, webots-ros2-universal-robot }:
buildRosPackage {
pname = "ros-eloquent-webots-ros2-demos";
version = "1.0.1-r1";
src = fetchurl {
url = "https://github.com/cyberbotics/webots_ros2-release/archive/release/eloquent/webots_ros2_demos/1.0.1-1.tar.gz";
name = "1.0.1-1.tar.gz";
sha256 = "17152fd74105586797e30a6f46896a11548f54aa99891ce507f7ecfb4a6e02bb";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ builtin-interfaces rclpy std-msgs webots-ros2-abb webots-ros2-core webots-ros2-universal-robot ];
meta = {
description = ''Various demos of the Webots-ROS2 interface.'';
license = with lib.licenses; [ asl20 ];
};
}