1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-16 23:21:00 +03:00
nix-ros-overlay/distros/melodic/dynamic-graph-python/default.nix

25 lines
845 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, boost, catkin, cmake, doxygen, dynamic-graph, eigenpy, git }:
buildRosPackage {
pname = "ros-melodic-dynamic-graph-python";
version = "4.0.4-r1";
src = fetchurl {
url = "https://github.com/stack-of-tasks/dynamic-graph-python-ros-release/archive/release/melodic/dynamic-graph-python/4.0.4-1.tar.gz";
name = "4.0.4-1.tar.gz";
sha256 = "14ff1387e5d26054597d0f7d09515315ebc513ad86dfbc64ca69978a6b56386e";
};
buildType = "cmake";
buildInputs = [ doxygen git ];
propagatedBuildInputs = [ boost catkin dynamic-graph eigenpy ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Dynamic graph library Python bindings'';
license = with lib.licenses; [ bsdOriginal ];
};
}