1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-20 14:18:39 +03:00
nix-ros-overlay/dashing/behaviortree-cpp/default.nix
2019-09-06 12:16:22 -04:00

26 lines
824 B
Nix

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