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

26 lines
811 B
Nix
Raw Normal View History

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.'';
license = with lib.licenses; [ bsdOriginal ];
2019-03-21 00:14:59 -04:00
};
}