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

25 lines
930 B
Nix

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, geometry-msgs, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-dashing-move-base-msgs";
version = "2.0.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/navigation_msgs-release/archive/release/dashing/move_base_msgs/2.0.2-1.tar.gz";
name = "2.0.2-1.tar.gz";
sha256 = "e2bc397e2cda33c49ff54289faf155b646cfed4f57ef94d71ab373c382f2615d";
};
buildType = "ament_cmake";
buildInputs = [ rosidl-default-generators ];
propagatedBuildInputs = [ action-msgs geometry-msgs rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Holds the action description and relevant messages for the move_base package.'';
license = with lib.licenses; [ bsdOriginal ];
};
}