mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 05:39:01 +03:00
22 lines
778 B
Nix
22 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.2";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/FlexBE/flexbe_behavior_engine-release/archive/release/kinetic/flexbe_onboard/1.1.2-0.tar.gz;
|
|
sha256 = "d2e5de652788e18a0c77f443fa59335d241973e2ffe6f7bf0472aa23c9890089";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|