2019-04-06 17:11:55 -04:00
|
|
|
|
2020-01-10 12:36:13 +00:00
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
2019-04-06 17:11:55 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-12-09 23:36:28 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, roslaunch }:
|
2019-04-06 17:11:55 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-cob-default-env-config";
|
2020-03-27 12:53:57 +00:00
|
|
|
version = "0.6.11-r1";
|
2019-04-06 17:11:55 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-27 12:53:57 +00:00
|
|
|
url = "https://github.com/ipa320/cob_environments-release/archive/release/melodic/cob_default_env_config/0.6.11-1.tar.gz";
|
|
|
|
name = "0.6.11-1.tar.gz";
|
|
|
|
sha256 = "d1e459919f059b334c6a24685c711fb4b007d06123c376ea9463c6b08f9ad646";
|
2019-04-06 17:11:55 -04:00
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-04-06 17:11:55 -04:00
|
|
|
checkInputs = [ roslaunch ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''This package contains configuration files for the default environments for Care-O-bot supported by IPA.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
2019-04-06 17:11:55 -04:00
|
|
|
};
|
|
|
|
}
|