2024-10-04 13:25:33 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-10-11 13:52:59 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, geometry-msgs, nav-msgs, py-trees-ros-interfaces, qt5, rclcpp, rviz-common, scenario-execution-interfaces, std-srvs }:
|
2024-10-04 13:25:33 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-scenario-execution-rviz";
|
2024-10-11 13:52:59 +00:00
|
|
|
version = "1.2.0-r4";
|
2024-10-04 13:25:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-10-11 13:52:59 +00:00
|
|
|
url = "https://github.com/ros2-gbp/scenario_execution-release/archive/release/jazzy/scenario_execution_rviz/1.2.0-4.tar.gz";
|
|
|
|
name = "1.2.0-4.tar.gz";
|
|
|
|
sha256 = "b927394ecde1454527e0538df5c73d89e9280a3e83ffb18088a4044a49f37ee4";
|
2024-10-04 13:25:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2024-10-11 13:52:59 +00:00
|
|
|
buildInputs = [ ament-cmake std-srvs ];
|
2024-10-04 13:25:33 +00:00
|
|
|
propagatedBuildInputs = [ geometry-msgs nav-msgs py-trees-ros-interfaces qt5.qtbase rclcpp rviz-common scenario-execution-interfaces ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "The scenario_execution_rviz package";
|
|
|
|
license = with lib.licenses; [ asl20 mit ];
|
|
|
|
};
|
|
|
|
}
|