nix-ros-overlay/distros/foxy/marker-msgs/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

29 lines
1.4 KiB
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-foxy-marker-msgs";
version = "0.0.8-r3";
src = fetchurl {
url = "https://github.com/tuw-robotics/marker_msgs-release/archive/release/foxy/marker_msgs/0.0.8-3.tar.gz";
name = "0.0.8-3.tar.gz";
sha256 = "9083d0decfd2a11c9e5a539f5ce16dd69e58dc31fc92c973aaa106abac299766";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
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 = with lib.licenses; [ bsdOriginal ];
};
}