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/kinetic/cob-supported-robots/default.nix

22 lines
661 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin }:
buildRosPackage {
pname = "ros-kinetic-cob-supported-robots";
version = "0.6.11";
src = fetchurl {
url = https://github.com/ipa320/cob_supported_robots-release/archive/release/kinetic/cob_supported_robots/0.6.11-0.tar.gz;
sha256 = "715866071791e62fd28ff7a84661d43cf4d090ec04a18996efbc351035ee479b";
};
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains the list of supported robots within the care-o-bot family.'';
#license = lib.licenses.Apache 2.0;
};
}