mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
1,014 B
Nix
24 lines
1,014 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-index-python, ament-pep257, composition-interfaces, launch, lifecycle-msgs, osrf-pycommon, python3Packages, pythonPackages, rclpy }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-launch-ros";
|
|
version = "0.8.10-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch_ros-release/archive/release/dashing/launch_ros/0.8.10-1.tar.gz";
|
|
name = "0.8.10-1.tar.gz";
|
|
sha256 = "3af3bf369738351a96cd9b05b74578c67355530dbc3e36f3541c133f3ea01bbf";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
propagatedBuildInputs = [ ament-index-python composition-interfaces launch lifecycle-msgs osrf-pycommon python3Packages.pyyaml rclpy ];
|
|
|
|
meta = {
|
|
description = ''ROS specific extensions to the launch tool.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|