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, geometry-msgs, actionlib, catkin, tf2-geometry-msgs, roscpp, nav-msgs, tf2-ros, move-base-msgs }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-pose-base-controller";
version = "0.3.3-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/ros-gbp/navigation_experimental-release/archive/release/melodic/pose_base_controller/0.3.3-1.tar.gz";
name = "0.3.3-1.tar.gz";
sha256 = "b18cf02ddbaaa806e9f580e6051492c37a21112cf46394a67ecbc3a150278242";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
buildInputs = [ geometry-msgs actionlib tf2-geometry-msgs roscpp nav-msgs tf2-ros move-base-msgs ];
propagatedBuildInputs = [ geometry-msgs actionlib tf2-geometry-msgs roscpp nav-msgs tf2-ros move-base-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
};
}