1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 06:31:44 +03:00
nix-ros-overlay/eloquent/unique-identifier-msgs/default.nix

25 lines
851 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-eloquent-unique-identifier-msgs";
version = "2.1.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/unique_identifier_msgs-release/archive/release/eloquent/unique_identifier_msgs/2.1.0-1.tar.gz";
name = "2.1.0-1.tar.gz";
sha256 = "fd5c4789d7670e1ab67b1396136e31e4fa22c1996f3e3d8cdb46f9e3cd90e5ec";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''ROS messages for universally unique identifiers.'';
license = with lib.licenses; [ bsdOriginal ];
};
}