2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-01-27 13:23:44 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-python, ament-index-python, launch, launch-ros, xacro }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-simple-launch";
|
2023-11-24 13:11:26 +00:00
|
|
|
version = "1.8.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-11-24 13:11:26 +00:00
|
|
|
url = "https://github.com/ros2-gbp/simple_launch-release/archive/release/rolling/simple_launch/1.8.0-1.tar.gz";
|
|
|
|
name = "1.8.0-1.tar.gz";
|
|
|
|
sha256 = "6dea100847eb4bce6b97e2713c4ecc2c8e586a54293bcb5b43b50c06ecab3223";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
2023-01-27 13:23:44 +00:00
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-python ];
|
2022-12-09 19:20:15 -05:00
|
|
|
propagatedBuildInputs = [ ament-index-python launch launch-ros xacro ];
|
2023-01-27 13:23:44 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake-python ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Python helper class for the ROS 2 launch system'';
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|