1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/kinetic/cob-default-env-config/default.nix

23 lines
724 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, roslaunch, catkin }:
buildRosPackage {
pname = "ros-kinetic-cob-default-env-config";
version = "0.6.8";
src = fetchurl {
url = https://github.com/ipa320/cob_environments-release/archive/release/kinetic/cob_default_env_config/0.6.8-0.tar.gz;
sha256 = "5aea7d7eedd364286669271a8f4896a923122252d187b4699966fc39d10ed148";
};
checkInputs = [ roslaunch ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains configuration files for the default environments for Care-O-bot supported by IPA.'';
#license = lib.licenses.Apache 2.0;
};
}