1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-25 08:15:32 +03:00
nix-ros-overlay/dashing/behaviortree-cpp-v3/default.nix

26 lines
812 B
Nix
Raw Normal View History

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