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-docker-control";
|
2020-10-23 13:30:31 +00:00
|
|
|
version = "0.6.10-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_substitute-release/archive/release/melodic/cob_docker_control/0.6.10-1.tar.gz";
|
|
|
|
name = "0.6.10-1.tar.gz";
|
|
|
|
sha256 = "73b049b93bec31c24a686391f0710e09faaf49e6057a1bff979ad0a106d2891c";
|
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 = ''Autonomous docking'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|