1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/melodic/unique-identifier/default.nix

27 lines
866 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, unique-id, uuid-msgs }:
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";
name = "1.0.6-0.tar.gz";
sha256 = "d1e54e7f1f8f2d9a6e7d481ee0c300dc7440f3033915afba621257aac6ff7d8b";
};
buildType = "catkin";
propagatedBuildInputs = [ unique-id uuid-msgs ];
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 = with lib.licenses; [ bsdOriginal ];
};
}