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/fetch-navigation/default.nix

24 lines
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, map-server, costmap-2d, amcl, base-local-planner, navfn, slam-karto, fetch-depth-layer, catkin, rotate-recovery, move-base, move-base-msgs, voxel-grid, clear-costmap-recovery, roslaunch, fetch-maps }:
buildRosPackage {
pname = "ros-melodic-fetch-navigation";
version = "0.8.1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = https://github.com/fetchrobotics-gbp/fetch_ros-release/archive/release/melodic/fetch_navigation/0.8.1-0.tar.gz;
sha256 = "533785a8a7b95afaa733d8670b138f897fcf5472326aac258478f23e88fbe129";
2019-03-21 00:14:59 -04:00
};
checkInputs = [ roslaunch ];
propagatedBuildInputs = [ map-server costmap-2d amcl base-local-planner navfn slam-karto fetch-depth-layer rotate-recovery move-base move-base-msgs voxel-grid clear-costmap-recovery fetch-maps ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Configuration and launch files for running ROS navigation on Fetch.'';
#license = lib.licenses.BSD;
};
}