1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/melodic/flexbe-input/default.nix

24 lines
768 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# 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-melodic-flexbe-input";
version = "1.1.1";
src = fetchurl {
url = https://github.com/FlexBE/flexbe_behavior_engine-release/archive/release/melodic/flexbe_input/1.1.1-0.tar.gz;
sha256 = "5df6e897ef3b2b6890162fce3b14381f09fcb9d04cbfae3b2aa2d59cb50408ff";
};
buildInputs = [ actionlib ];
2019-03-21 00:14:59 -04:00
propagatedBuildInputs = [ flexbe-msgs smach-ros actionlib rospy ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''flexbe_input enables to send data to onboard behavior when required.'';
#license = lib.licenses.BSD;
};
}