1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/foxy/webots-ros2-tutorials/default.nix

25 lines
972 B
Nix
Raw Normal View History

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, builtin-interfaces, geometry-msgs, pythonPackages, rclpy, std-msgs, webots-ros2-core }:
buildRosPackage {
pname = "ros-foxy-webots-ros2-tutorials";
version = "1.1.1-r1";
src = fetchurl {
url = "https://github.com/cyberbotics/webots_ros2-release/archive/release/foxy/webots_ros2_tutorials/1.1.1-1.tar.gz";
name = "1.1.1-1.tar.gz";
sha256 = "c6d87d5013d303b4452d11153ee1b1d24e80a58bbef05e71ffa700d19e96c062";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rclpy std-msgs webots-ros2-core ];
meta = {
description = ''This package is made to aid youtube Webots_ROS2 tutorial series'';
license = with lib.licenses; [ asl20 ];
};
}