1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/cl-tf2/default.nix

23 lines
752 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, tf2-msgs, actionlib-lisp, catkin, roslisp, cl-utils, cl-transforms-stamped }:
buildRosPackage {
pname = "ros-kinetic-cl-tf2";
version = "0.2.10";
src = fetchurl {
url = https://github.com/ros-gbp/roslisp_common-release/archive/release/kinetic/cl_tf2/0.2.10-0.tar.gz;
sha256 = "1f1c7cc80ac8b3ff1edb65ce0f026f9be9347e9dfbe65423c4bed7f7da36fb41";
};
propagatedBuildInputs = [ tf2-msgs cl-transforms-stamped actionlib-lisp roslisp cl-utils ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Client implementation to use TF2 from Common Lisp'';
#license = lib.licenses.BSD;
};
}