1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-21 06:38:40 +03:00
nix-ros-overlay/dashing/behaviortree-cpp-v3/default.nix
2019-11-07 17:46:51 -05:00

26 lines
843 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-v3";
version = "3.1.0-r1";
src = fetchurl {
url = "https://github.com/BehaviorTree/behaviortree_cpp_v3-release/archive/release/dashing/behaviortree_cpp_v3/3.1.0-1.tar.gz";
name = "3.1.0-1.tar.gz";
sha256 = "81ed95918328456e1d71e6646f99e33025313518c4f4a9893428b11218a689ca";
};
buildType = "ament_cmake";
buildInputs = [ cppzmq ];
checkInputs = [ ament-cmake-gtest ];
propagatedBuildInputs = [ cppzmq ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''This package provides the Behavior Trees core library.'';
license = with lib.licenses; [ mit ];
};
}