mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-17 13:08:38 +03:00
27 lines
979 B
Nix
27 lines
979 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, grid-map-cmake-helpers, grid-map-msgs, grid-map-ros }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-jazzy-grid-map-loader";
|
||
|
version = "2.2.0-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/grid_map-release/archive/release/jazzy/grid_map_loader/2.2.0-1.tar.gz";
|
||
|
name = "2.2.0-1.tar.gz";
|
||
|
sha256 = "91a2941d31d39a0fe1f9fa46500e074017ab29d1a40be01b5c0f7b92560cc24e";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake grid-map-cmake-helpers ];
|
||
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
||
|
propagatedBuildInputs = [ grid-map-msgs grid-map-ros ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Loading and publishing grid maps from bag files.";
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|