1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/kinetic/flexbe-input/default.nix
2019-04-06 20:59:50 -04:00

23 lines
768 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, flexbe-msgs, catkin, smach-ros, actionlib, rospy }:
buildRosPackage {
pname = "ros-kinetic-flexbe-input";
version = "1.1.1";
src = fetchurl {
url = https://github.com/FlexBE/flexbe_behavior_engine-release/archive/release/kinetic/flexbe_input/1.1.1-0.tar.gz;
sha256 = "7c2af578decbe67fb28631ef009ec0bf4b0de64a6f814d60a7ec36c7da1e53b5";
};
buildInputs = [ actionlib ];
propagatedBuildInputs = [ flexbe-msgs smach-ros actionlib rospy ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''flexbe_input enables to send data to onboard behavior when required.'';
#license = lib.licenses.BSD;
};
}