mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
24 lines
709 B
Nix
24 lines
709 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin, roslib, zeromq3 }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-behaviortree-cpp";
|
||
|
version = "2.5.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/BehaviorTree/behaviortree_cpp-release/archive/release/melodic/behaviortree_cpp/2.5.1-0.tar.gz;
|
||
|
sha256 = "cd1af27ccb2e5763fa4e9f02e23edf77fca7d1894d013a0d932e7f5ad05d337c";
|
||
|
};
|
||
|
|
||
|
buildInputs = [ roslib zeromq3 ];
|
||
|
propagatedBuildInputs = [ roslib zeromq3 ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''This package provides a behavior trees core.'';
|
||
|
#license = lib.licenses.MIT;
|
||
|
};
|
||
|
}
|