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

26 lines
1,002 B
Nix

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, nav-msgs, rosidl-default-generators, rosidl-default-runtime, sensor-msgs, std-msgs }:
buildRosPackage {
pname = "ros-iron-map-msgs";
version = "2.2.0-r3";
src = fetchurl {
url = "https://github.com/ros2-gbp/navigation_msgs-release/archive/release/iron/map_msgs/2.2.0-3.tar.gz";
name = "2.2.0-3.tar.gz";
sha256 = "d3c290c835ea42fbd9f93e69ccb871ffc808bc947d20383f30b676638e28da94";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ nav-msgs rosidl-default-runtime sensor-msgs std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = "This package defines messages commonly used in mapping packages.";
license = with lib.licenses; [ bsdOriginal ];
};
}