1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/kinetic/variant-msgs/default.nix

26 lines
926 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, std-msgs, message-generation, catkin, message-runtime }:
buildRosPackage {
pname = "ros-kinetic-variant-msgs";
version = "0.1.5";
src = fetchurl {
url = https://github.com/anybotics/variant-release/archive/release/kinetic/variant_msgs/0.1.5-0.tar.gz;
sha256 = "ddebb68e13b13b0a715623f622248e47f235cb8ae4b3595cf7f8c619fe7afbe7";
};
buildInputs = [ std-msgs message-generation ];
propagatedBuildInputs = [ std-msgs message-runtime ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Variant messages are designed to accommodate the information content
of any invariant message. They are truly generic and can freely be
converted to and from specific message objects.'';
#license = lib.licenses.GNU Lesser General Public License (LGPL);
};
}