2021-01-22 13:37:51 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2021-01-22 13:37:51 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-variant-msgs";
|
|
|
|
version = "0.1.6-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/anybotics/variant-release/archive/release/noetic/variant_msgs/0.1.6-1.tar.gz";
|
|
|
|
name = "0.1.6-1.tar.gz";
|
|
|
|
sha256 = "c7de9af40e55b59fd26cae171cc0dbed26e6bf560188c6f5380c3a84890da468";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin message-generation ];
|
2021-01-22 13:37:51 +00:00
|
|
|
propagatedBuildInputs = [ message-runtime std-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
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.";
|
2022-03-28 21:23:37 -04:00
|
|
|
license = with lib.licenses; [ "GNU-Lesser-General-Public-License-LGPL-" ];
|
2021-01-22 13:37:51 +00:00
|
|
|
};
|
|
|
|
}
|