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

24 lines
807 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, swig, trac-ik-lib, rospy, tf-conversions, tf }:
buildRosPackage {
pname = "ros-kinetic-trac-ik-python";
version = "1.5.0";
src = fetchurl {
url = https://github.com/traclabs/trac_ik-release/archive/release/kinetic/trac_ik_python/1.5.0-0.tar.gz;
sha256 = "587ff3dba0a2fc4cc769d5ac9cd34dd0beea95afe336395efd231ee450b83ef1";
};
buildInputs = [ swig trac-ik-lib tf-conversions rospy ];
propagatedBuildInputs = [ swig trac-ik-lib rospy tf-conversions tf ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''The trac_ik_python package contains a python wrapper using SWIG
for trac_ik_lib'';
#license = lib.licenses.BSD;
};
}