nix-ros-overlay/distros/noetic/dynamic-graph-python/default.nix

26 lines
849 B
Nix
Raw Normal View History

# Copyright 2022 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-noetic-dynamic-graph-python";
version = "4.0.9-r1";
src = fetchurl {
url = "https://github.com/stack-of-tasks/dynamic-graph-python-ros-release/archive/release/noetic/dynamic-graph-python/4.0.9-1.tar.gz";
name = "4.0.9-1.tar.gz";
sha256 = "cc53de43ac9dea8a20c816669af4fc1cdec3d46ca22738086ebc1508bfbdfdf8";
};
buildType = "cmake";
buildInputs = [ cmake doxygen git ];
propagatedBuildInputs = [ boost catkin dynamic-graph eigenpy ];
nativeBuildInputs = [ cmake ];
meta = {
description = ''Dynamic graph library Python bindings'';
license = with lib.licenses; [ bsdOriginal ];
};
}