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/distros/melodic/rc-dynamics-api/default.nix

33 lines
1.3 KiB
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, cmake, curl, protobuf }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-rc-dynamics-api";
version = "0.10.0-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/roboception-gbp/rc_dynamics_api-release/archive/release/melodic/rc_dynamics_api/0.10.0-1.tar.gz";
name = "0.10.0-1.tar.gz";
sha256 = "251805e98f63e6b31fcb8d7a56dbf855c366c52026cee71888d6181b1bfdfc34";
2019-03-21 00:14:59 -04:00
};
buildType = "cmake";
propagatedBuildInputs = [ catkin curl protobuf ];
nativeBuildInputs = [ cmake ];
2019-03-21 00:14:59 -04:00
meta = {
description = ''The rc_dynamics_api provides an API for easy handling of the dynamic-state data
streams provided by Roboception's stereo camera with self-localization.
See http://rc-visard.com
Dynamic-state estimates of the rc_visard relate to its self-localization and
ego-motion estimation. These states refer to rc_visard's current pose,
velocity, or acceleration and are published on demand via several data streams.
For a complete list and descriptions of these dynamics states and the
respective data streams please refer to rc_visard's user manual.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}