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/teb-local-planner-tutorials/default.nix

23 lines
802 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, map-server, amcl, catkin, move-base, stage-ros, teb-local-planner }:
buildRosPackage {
pname = "ros-melodic-teb-local-planner-tutorials";
version = "0.2.3";
src = fetchurl {
url = https://github.com/rst-tu-dortmund/teb_local_planner_tutorials-release/archive/release/melodic/teb_local_planner_tutorials/0.2.3-0.tar.gz;
sha256 = "0a565d87f210b89666efd8a62608439a79462561b64a5fa731756ec5af290b37";
};
propagatedBuildInputs = [ map-server amcl move-base stage-ros teb-local-planner ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''The teb_local_planner_tutorials package'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}