mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
858 B
Nix
24 lines
858 B
Nix
|
|
# Copyright 2021 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cob-supported-robots, roslaunch }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-cob-default-robot-config";
|
|
version = "0.7.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ipa320/cob_robots-release/archive/release/melodic/cob_default_robot_config/0.7.5-1.tar.gz";
|
|
name = "0.7.5-1.tar.gz";
|
|
sha256 = "e8cf707b6672708a10ca906865ab0c48ed7ad6c340eb38a6c5c9c9cc46dc6186";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
checkInputs = [ cob-supported-robots roslaunch ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Default configuration of the different robots supported by the Care-O-bot stacks. Configuration is e.g. preconfigured joint positions.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|