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/crystal/behaviortree-cpp/default.nix
2019-09-05 22:48:11 -04:00

25 lines
793 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake, zeromq }:
buildRosPackage {
pname = "ros-crystal-behaviortree-cpp";
version = "2.4.3-r1";
src = fetchurl {
url = https://github.com/BehaviorTree/behaviortree_cpp-release/archive/release/crystal/behaviortree_cpp/2.4.3-1.tar.gz;
sha256 = "119e8a57c251ae3979a0481b693f062941796764ee047eb40eff98789183a9aa";
};
buildType = "ament_cmake";
buildInputs = [ zeromq ];
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ zeromq ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''This package provides a behavior trees core.'';
license = with lib.licenses; [ mit ];
};
}