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/hector-pose-estimation-core/default.nix

25 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, cmake-modules, rosconsole, sensor-msgs, catkin, rostime, roscpp, geographic-msgs, nav-msgs, eigen, tf, geometry-msgs }:
buildRosPackage {
pname = "ros-kinetic-hector-pose-estimation-core";
version = "0.3.0";
src = fetchurl {
url = https://github.com/tu-darmstadt-ros-pkg-gbp/hector_localization-release/archive/release/kinetic/hector_pose_estimation_core/0.3.0-0.tar.gz;
sha256 = "916a0df99a333a3c698e8c718fa05fcebe38a882e6cc7b0353781e806bdc04e3";
};
buildInputs = [ rosconsole cmake-modules sensor-msgs rostime roscpp geographic-msgs nav-msgs eigen tf geometry-msgs ];
propagatedBuildInputs = [ rosconsole sensor-msgs rostime roscpp geographic-msgs nav-msgs eigen tf geometry-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''hector_pose_estimation_core is the core package of the hector_localization stack. It contains the Extended Kalman Filter (EKF)
that estimates the 6DOF pose of the robot. hector_pose_estimation can be used either as a library, as a nodelet or as a standalone node.'';
#license = lib.licenses.BSD;
};
}