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, std-msgs, message-generation, catkin, message-runtime }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-variant-msgs";
|
|
|
|
version = "0.1.5";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:26:32 -04:00
|
|
|
url = "https://github.com/anybotics/variant-release/archive/release/melodic/variant_msgs/0.1.5-0.tar.gz";
|
|
|
|
name = "0.1.5-0.tar.gz";
|
2019-03-21 00:14:59 -04:00
|
|
|
sha256 = "bc5b26692c4b9223aa4bd83c00fe4b2710a4f5acfe1b9c49cbba0e6f1ad3a16f";
|
|
|
|
};
|
|
|
|
|
2019-09-06 12:26:32 -04:00
|
|
|
buildType = "catkin";
|
2019-04-06 22:15:06 -04:00
|
|
|
buildInputs = [ std-msgs message-generation ];
|
2019-03-21 00:14:59 -04:00
|
|
|
propagatedBuildInputs = [ std-msgs message-runtime ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
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.'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ lgpl2 ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|