1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/kinetic/tf-conversions/default.nix
2019-04-06 20:59:50 -04:00

30 lines
1.3 KiB
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, kdl-conversions, orocos-kdl, cmake-modules, python-orocos-kdl, catkin, eigen, tf, geometry-msgs }:
buildRosPackage {
pname = "ros-kinetic-tf-conversions";
version = "1.11.9";
src = fetchurl {
url = https://github.com/ros-gbp/geometry-release/archive/release/kinetic/tf_conversions/1.11.9-0.tar.gz;
sha256 = "8fee2dbf9f0fe32faf00d36aaaebb9a5d311b2ff9838c5ef8a7b409b4d655e86";
};
buildInputs = [ kdl-conversions cmake-modules orocos-kdl eigen tf geometry-msgs ];
propagatedBuildInputs = [ kdl-conversions orocos-kdl eigen python-orocos-kdl tf geometry-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''This package contains a set of conversion functions to convert
common tf datatypes (point, vector, pose, etc) into semantically
identical datatypes used by other libraries. The conversion functions
make it easier for users of the transform library (tf) to work with
the datatype of their choice. Currently this package has support for
the Kinematics and Dynamics Library (KDL) and the Eigen matrix
library. This package is stable, and will get integrated into tf in
the next major release cycle (see roadmap).'';
#license = lib.licenses.BSD;
};
}