1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/iron/grid-map-core/default.nix

26 lines
971 B
Nix

# 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-iron-grid-map-core";
version = "2.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/grid_map-release/archive/release/iron/grid_map_core/2.1.0-1.tar.gz";
name = "2.1.0-1.tar.gz";
sha256 = "4e17180229644423538879bb1fa02220dbf5ab87df91bf659a362802c45a5b71";
};
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 ];
};
}