mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
913 B
Nix
25 lines
913 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, geometry-msgs, grid-map-cmake-helpers, rclcpp, rosidl-default-generators, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-grid-map-msgs";
|
|
version = "2.2.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/grid_map-release/archive/release/jazzy/grid_map_msgs/2.2.1-1.tar.gz";
|
|
name = "2.2.1-1.tar.gz";
|
|
sha256 = "e4ff31390c18a44ec562393a3194ae5a14668f5919ffcc466f2ea45b4bde398f";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake grid-map-cmake-helpers ];
|
|
propagatedBuildInputs = [ geometry-msgs rclcpp rosidl-default-generators std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Definition of the multi-layered grid map message type.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|