mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-16 23:21:00 +03:00
23 lines
880 B
Nix
23 lines
880 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, tf2-tools, tf2-msgs, tf2-geometry-msgs, catkin, tf2-kdl, tf2-ros, tf2-sensor-msgs, tf2, tf2-eigen, tf2-bullet, tf2-py }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-geometry2";
|
||
|
version = "0.5.20";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/geometry2-release/archive/release/kinetic/geometry2/0.5.20-0.tar.gz;
|
||
|
sha256 = "7ebc9e999526ae2bf3896e0df83e15514034ce63f24018e386aa40c8cf4c6a0a";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ tf2-tools tf2-msgs tf2-geometry-msgs tf2-kdl tf2-ros tf2-sensor-msgs tf2 tf2-eigen tf2-bullet tf2-py ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''A metapackage to bring in the default packages second generation Transform Library in ros, tf2.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|