2020-07-10 12:58:21 +00:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 Open Source Robotics Foundation
|
2020-07-10 12:58:21 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, boost, catkin, cmake, doxygen, eigen, git, graphviz }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-dynamic-graph";
|
2021-03-12 14:44:32 +00:00
|
|
|
version = "4.3.4-r1";
|
2020-07-10 12:58:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-03-12 14:44:32 +00:00
|
|
|
url = "https://github.com/stack-of-tasks/dynamic-graph-ros-release/archive/release/melodic/dynamic-graph/4.3.4-1.tar.gz";
|
|
|
|
name = "4.3.4-1.tar.gz";
|
|
|
|
sha256 = "621521f87a4002ffae23a5a7555d17d637b68b77c5dd1d5cdf4d181b8f71e720";
|
2020-07-10 12:58:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ doxygen git ];
|
|
|
|
propagatedBuildInputs = [ boost catkin eigen graphviz ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Dynamic graph library'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|