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

25 lines
847 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2020 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, actionlib, catkin, flexbe-msgs, pythonPackages, rospy, smach-ros }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-flexbe-input";
version = "1.2.5-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/FlexBE/flexbe_behavior_engine-release/archive/release/melodic/flexbe_input/1.2.5-1.tar.gz";
name = "1.2.5-1.tar.gz";
sha256 = "39042d3ccf5c5a7bc479a6798d6bc3f7b16af6a2af8d980c6fddc734d576f4a8";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
propagatedBuildInputs = [ actionlib flexbe-msgs pythonPackages.six rospy smach-ros ];
nativeBuildInputs = [ catkin ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''flexbe_input enables to send data to onboard behavior when required.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}