2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, uuid-msgs, catkin, unique-id }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-unique-identifier";
|
|
|
|
version = "1.0.6";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = https://github.com/ros-geographic-info/unique_identifier-release/archive/release/melodic/unique_identifier/1.0.6-0.tar.gz;
|
|
|
|
sha256 = "d1e54e7f1f8f2d9a6e7d481ee0c300dc7440f3033915afba621257aac6ff7d8b";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ uuid-msgs unique-id ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ROS messages and interfaces for universally unique identifiers.
|
|
|
|
|
|
|
|
Not needed for wet packages, use only to resolve dry stack
|
|
|
|
dependencies.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|