1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/rmf-visualization-msgs/default.nix

27 lines
1,002 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-rolling-rmf-visualization-msgs";
version = "1.5.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_visualization_msgs-release/archive/release/rolling/rmf_visualization_msgs/1.5.0-1.tar.gz";
name = "1.5.0-1.tar.gz";
sha256 = "3654e755b9e3979e7aea76571aaaba130f8761b314b498b5cd09c5945bb88b03";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "A package containing messages used for visualizations";
license = with lib.licenses; [ asl20 ];
};
}