nix-ros-overlay/distros/foxy/dynamic-graph/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

25 lines
804 B
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, boost, cmake, doxygen, eigen, git, graphviz }:
buildRosPackage {
pname = "ros-foxy-dynamic-graph";
version = "4.4.3-r2";
src = fetchurl {
url = "https://github.com/stack-of-tasks/dynamic-graph-ros-release/archive/release/foxy/dynamic-graph/4.4.3-2.tar.gz";
name = "4.4.3-2.tar.gz";
sha256 = "062cdbb24d7111dac5a149ce85438967a5019f9c478cdda33da9e862de89670c";
};
buildType = "cmake";
buildInputs = [ cmake doxygen git ];
propagatedBuildInputs = [ ament-cmake boost eigen graphviz ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Dynamic graph library'';
license = with lib.licenses; [ bsdOriginal ];
};
}