mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
821 B
Nix
24 lines
821 B
Nix
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, cob-light, cob-script-server, rospy, std-msgs, std-srvs }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-cob-default-robot-behavior";
|
|
version = "0.7.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ipa320/cob_robots-release/archive/release/melodic/cob_default_robot_behavior/0.7.2-1.tar.gz";
|
|
name = "0.7.2-1.tar.gz";
|
|
sha256 = "ee468816025bfbdd6d464d29a06086647132c3a123eb97ce24677f4f913d54b7";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
propagatedBuildInputs = [ cob-light cob-script-server rospy std-msgs std-srvs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The cob_default_robot_behavior package'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|