1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-17 15:40:17 +03:00
nix-ros-overlay/distros/melodic/flexbe-core/default.nix

26 lines
876 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, catkin, diagnostic-msgs, flexbe-msgs, rospy, rostest, smach-ros, tf }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-flexbe-core";
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_core/1.2.5-1.tar.gz";
name = "1.2.5-1.tar.gz";
sha256 = "d4dffbd00d25778acb53b74ffc939b32605f877a9967a635247018e1556ea28a";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
buildInputs = [ rostest ];
propagatedBuildInputs = [ diagnostic-msgs flexbe-msgs rospy smach-ros tf ];
2019-03-21 00:14:59 -04:00
nativeBuildInputs = [ catkin ];
meta = {
description = ''flexbe_core provides the core smach extension for the FlexBE behavior engine.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}