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/eloquent/map-msgs/default.nix
2020-01-17 21:21:17 -05:00

25 lines
953 B
Nix

# Copyright 2020 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-eloquent-map-msgs";
version = "2.0.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/navigation_msgs-release/archive/release/eloquent/map_msgs/2.0.2-1.tar.gz";
name = "2.0.2-1.tar.gz";
sha256 = "47c44898cbe8f3043cfb1fa29da9dc949338e213790cf6d638572b49c9abb454";
};
buildType = "ament_cmake";
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 ];
};
}