2019-08-30 00:06:28 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2019-08-30 00:06:28 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-cob-navigation-config";
|
2020-10-23 13:30:31 +00:00
|
|
|
version = "0.6.11-r1";
|
2019-08-30 00:06:28 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-10-23 13:30:31 +00:00
|
|
|
url = "https://github.com/ipa320/cob_navigation-release/archive/release/melodic/cob_navigation_config/0.6.11-1.tar.gz";
|
|
|
|
name = "0.6.11-1.tar.gz";
|
|
|
|
sha256 = "2c60787864535045ad0d1755efea2bc0223a97d12b2819ca20465d18c06fe4e5";
|
2019-08-30 00:06:28 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-08-30 00:06:28 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package holds common configuration files for running the <a href="http://ros.org/wiki/move_base">move_base</a> node and other navigation related nodes on the <a href="http://ros.org/wiki/care-o-bot">Care-O-bot</a>.'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|