2024-05-24 14:00:52 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2024-05-24 14:00:52 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-python, ament-index-python, launch, launch-ros, xacro }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-simple-launch";
|
2025-02-21 13:18:38 +00:00
|
|
|
version = "1.11.0-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-02-21 13:18:38 +00:00
|
|
|
url = "https://github.com/ros2-gbp/simple_launch-release/archive/release/jazzy/simple_launch/1.11.0-1.tar.gz";
|
|
|
|
name = "1.11.0-1.tar.gz";
|
|
|
|
sha256 = "fbe469ba422bb1feab53500bf9e2e5091cf605e0ec904489c2d5e6b2c3c9a679";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-python ];
|
|
|
|
propagatedBuildInputs = [ ament-index-python launch launch-ros xacro ];
|
|
|
|
nativeBuildInputs = [ ament-cmake-python ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python helper class for the ROS 2 launch system";
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|