1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-12 05:16:30 +03:00
nix-ros-overlay/eloquent/nav2-msgs/default.nix

25 lines
962 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, builtin-interfaces, geometry-msgs, nav-msgs, nav2-common, rclcpp, rosidl-default-generators, std-msgs }:
buildRosPackage {
pname = "ros-eloquent-nav2-msgs";
version = "0.3.1-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/eloquent/nav2_msgs/0.3.1-1.tar.gz";
name = "0.3.1-1.tar.gz";
sha256 = "16ffed32a3ef43938af3cede79118c857848eb7efcd6196c23efe4f268663275";
};
buildType = "ament_cmake";
buildInputs = [ nav2-common ];
propagatedBuildInputs = [ action-msgs builtin-interfaces geometry-msgs nav-msgs rclcpp rosidl-default-generators std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Messages and service files for the navigation2 stack'';
license = with lib.licenses; [ asl20 ];
};
}