2020-05-23 15:15:06 -04:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2020-05-23 15:15:06 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, unique-id, uuid-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-unique-identifier";
|
|
|
|
version = "1.0.6-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros-geographic-info/unique_identifier-release/archive/release/noetic/unique_identifier/1.0.6-1.tar.gz";
|
|
|
|
name = "1.0.6-1.tar.gz";
|
|
|
|
sha256 = "8e57df192afc4bee7a46c3f9e80251bf4b8c555f96b36154ea15474ab1d2848f";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-05-23 15:15:06 -04:00
|
|
|
propagatedBuildInputs = [ unique-id uuid-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "ROS messages and interfaces for universally unique identifiers.
|
2020-05-23 15:15:06 -04:00
|
|
|
|
|
|
|
Not needed for wet packages, use only to resolve dry stack
|
2024-03-23 14:09:26 +00:00
|
|
|
dependencies.";
|
2020-05-23 15:15:06 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|