2020-12-11 13:16:21 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-12-11 13:16:21 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2023-06-19 17:15:23 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, diagnostic-msgs, flexbe-msgs, python3Packages, rospy, rostest, tf }:
|
2020-12-11 13:16:21 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-flexbe-core";
|
2023-06-19 17:15:23 -04:00
|
|
|
version = "1.4.0-r2";
|
2020-12-11 13:16:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-07-07 13:21:03 +00:00
|
|
|
url = "https://github.com/flexbe/flexbe_behavior_engine-release/archive/release/noetic/flexbe_core/1.4.0-2.tar.gz";
|
2023-06-19 17:15:23 -04:00
|
|
|
name = "1.4.0-2.tar.gz";
|
|
|
|
sha256 = "c4225981256190ec4f137474481b9c08028529ec40015d2b0a71e1de2c0c827e";
|
2020-12-11 13:16:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2023-06-19 17:15:23 -04:00
|
|
|
buildInputs = [ catkin python3Packages.setuptools ];
|
|
|
|
propagatedBuildInputs = [ diagnostic-msgs flexbe-msgs rospy rostest tf ];
|
|
|
|
nativeBuildInputs = [ catkin python3Packages.setuptools ];
|
2020-12-11 13:16:21 +00:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "flexbe_core provides the core components for the FlexBE behavior engine.";
|
2020-12-11 13:16:21 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|