1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/octomap-msgs/default.nix

27 lines
1 KiB
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, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-rolling-octomap-msgs";
version = "2.0.0-r4";
src = fetchurl {
url = "https://github.com/ros2-gbp/octomap_msgs-release/archive/release/rolling/octomap_msgs/2.0.0-4.tar.gz";
name = "2.0.0-4.tar.gz";
sha256 = "ca8db2d940a6cbb3a7d4ef820b844e49dc2530b4ca7c7231aa4d251eb0fe255b";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
propagatedBuildInputs = [ geometry-msgs rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "This package provides messages and serializations / conversion for the <a href=\"http://octomap.github.com\">OctoMap library</a>.
This ROS2 version is based on version 0.3.3 of the ROS1 package.";
license = with lib.licenses; [ bsdOriginal ];
};
}