mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
686 B
Nix
23 lines
686 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, cmake-modules, catkin, tf2, eigen, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-tf2-eigen";
|
||
|
version = "0.5.20";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/geometry2-release/archive/release/kinetic/tf2_eigen/0.5.20-0.tar.gz;
|
||
|
sha256 = "c6fd80898753f78784770962624947a040f2cd603008d9a8a0125639df0ba8db";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ tf2 geometry-msgs eigen ];
|
||
|
nativeBuildInputs = [ tf2 cmake-modules eigen catkin geometry-msgs ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''tf2_eigen'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|