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/pose-base-controller/default.nix

28 lines
1.1 KiB
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, tf2-geometry-msgs, catkin, tf2-ros, move-base-msgs, nav-msgs, actionlib, roscpp, geometry-msgs }:
buildRosPackage {
pname = "ros-melodic-pose-base-controller";
version = "0.3.2";
src = fetchurl {
url = "https://github.com/ros-gbp/navigation_experimental-release/archive/release/melodic/pose_base_controller/0.3.2-0.tar.gz";
name = "0.3.2-0.tar.gz";
2019-03-21 00:14:59 -04:00
sha256 = "92fdd5e9e92e018a8ecbb45cf342f449ad33550922b7b9de82b27c54c131af48";
};
buildType = "catkin";
buildInputs = [ tf2-geometry-msgs tf2-ros move-base-msgs nav-msgs actionlib roscpp geometry-msgs ];
propagatedBuildInputs = [ tf2-geometry-msgs tf2-ros move-base-msgs nav-msgs actionlib roscpp geometry-msgs ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''A node that provides the move_base action server interface, but instead of
planning simply drives towards the target pose using a control-based
approach.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}