1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/move-base-msgs/default.nix

24 lines
847 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib-msgs, catkin, message-generation, message-runtime, geometry-msgs }:
buildRosPackage {
pname = "ros-melodic-move-base-msgs";
version = "1.13.0";
src = fetchurl {
url = https://github.com/ros-gbp/navigation_msgs-release/archive/release/melodic/move_base_msgs/1.13.0-0.tar.gz;
sha256 = "a9b1ee115c3252718a9915a94ba16421a39309ed237a33d790f486d468f8a1ef";
};
buildInputs = [ message-generation actionlib-msgs geometry-msgs ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ message-runtime actionlib-msgs geometry-msgs ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''Holds the action description and relevant messages for the move_base package'';
#license = lib.licenses.BSD;
};
}