mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
794 B
Nix
25 lines
794 B
Nix
|
|
# 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.'';
|
|
#license = lib.licenses.BSD;
|
|
};
|
|
}
|