mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
23 lines
778 B
Nix
23 lines
778 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, flexbe-msgs, catkin, smach-ros, rospy, flexbe-core }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-flexbe-onboard";
|
||
|
version = "1.1.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/FlexBE/flexbe_behavior_engine-release/archive/release/kinetic/flexbe_onboard/1.1.1-0.tar.gz;
|
||
|
sha256 = "a8ce5d399b7b03b9ab6ec1f60dc46e8bdc4018a34d75e242020c57fbe54f38da";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ flexbe-msgs smach-ros flexbe-core rospy ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''flexbe_onboard implements the robot-side of the behavior engine from where all behaviors are started.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|