mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
24 lines
992 B
Nix
24 lines
992 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, python-orocos-kdl, sensor-msgs, catkin, pythonPackages, rostest, urdfdom-py, rospy, visualization-msgs, calibration-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-calibration-estimation";
|
||
|
version = "0.10.14";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-gbp/calibration-release/archive/release/kinetic/calibration_estimation/0.10.14-0.tar.gz;
|
||
|
sha256 = "73ed9829ba3d29d76e91ed927415a9d8a071502162efdfb8a3aeebee500f1a40";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ calibration-msgs python-orocos-kdl sensor-msgs pythonPackages.scipy rostest rospy visualization-msgs pythonPackages.matplotlib urdfdom-py ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Runs an optimization to estimate the a robot's kinematic parameters. This package is a
|
||
|
generic rewrite of pr2_calibration_estimation.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|