mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
1.2 KiB
Nix
26 lines
1.2 KiB
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, std-msgs, geometry-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-melodic-marker-msgs";
|
|
version = "0.0.6";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/tuw-robotics/marker_msgs-release/archive/release/melodic/marker_msgs/0.0.6-0.tar.gz;
|
|
sha256 = "97c6b32ffed3602939b7decce5e38a880e7e64a3d1dd22217512ddf2779e48c5";
|
|
};
|
|
|
|
buildInputs = [ std-msgs message-generation geometry-msgs ];
|
|
propagatedBuildInputs = [ std-msgs message-runtime geometry-msgs ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''The marker_msgs package contains messages usable to setup a marker/fiducial system.
|
|
The package distinguishes between two types of messages.
|
|
First messages to describe the properties of a marker/fiducial detection system and the detected markers.
|
|
Secondly messages used to represent a map of markers/features with covariances as it would be produced by a SLAM system or published by a map server for self-localization.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|