1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +03:00
nix-ros-overlay/distros/jazzy/grid-map-core/default.nix

27 lines
973 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, ament-cmake-gtest, ament-lint-auto, ament-lint-common, eigen, grid-map-cmake-helpers }:
buildRosPackage {
pname = "ros-jazzy-grid-map-core";
version = "2.2.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/grid_map-release/archive/release/jazzy/grid_map_core/2.2.0-1.tar.gz";
name = "2.2.0-1.tar.gz";
sha256 = "1f0f2c9c7da9ead84e6d86cd84e7f3a00bc55767dfd4b3e05cb8cc28e61cf80f";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake grid-map-cmake-helpers ];
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ eigen ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Universal grid map library to manage two-dimensional grid maps with multiple data layers.";
license = with lib.licenses; [ bsdOriginal ];
};
}