1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-21 22:50:18 +03:00
nix-ros-overlay/distros/jazzy/scenario-execution-rviz/default.nix

26 lines
992 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, geometry-msgs, nav-msgs, py-trees-ros-interfaces, qt5, rclcpp, rviz-common, scenario-execution-interfaces, std-srvs }:
buildRosPackage {
pname = "ros-jazzy-scenario-execution-rviz";
version = "1.2.0-r4";
src = fetchurl {
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";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake std-srvs ];
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 ];
};
}