mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
24 lines
807 B
Nix
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;
|
|
};
|
|
}
|