mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
1,013 B
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-index-python, ament-pep257, composition-interfaces, launch, lifecycle-msgs, osrf-pycommon, python3Packages, pythonPackages, rclpy }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-launch-ros";
|
|
version = "0.9.6-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/launch_ros-release/archive/release/eloquent/launch_ros/0.9.6-1.tar.gz";
|
|
name = "0.9.6-1.tar.gz";
|
|
sha256 = "37298bba4f256cb65816225ba42c5a4606e9a64d0411a06372a11657b8426ed7";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|