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/distros/melodic/variant-msgs/default.nix

26 lines
941 B
Nix
Raw Normal View History

2019-03-21 00:14:59 -04:00
# Copyright 2021 Open Source Robotics Foundation
2019-03-21 00:14:59 -04:00
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, std-msgs }:
2019-03-21 00:14:59 -04:00
buildRosPackage {
pname = "ros-melodic-variant-msgs";
version = "0.1.6-r1";
2019-03-21 00:14:59 -04:00
src = fetchurl {
url = "https://github.com/anybotics/variant-release/archive/release/melodic/variant_msgs/0.1.6-1.tar.gz";
name = "0.1.6-1.tar.gz";
sha256 = "ae614a42d4d601049053d44911ab4ed4d97deaa47e2ea608f05b7826a450b5ac";
2019-03-21 00:14:59 -04:00
};
buildType = "catkin";
buildInputs = [ message-generation ];
propagatedBuildInputs = [ message-runtime std-msgs ];
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.'';
license = with lib.licenses; [ lgpl2 ];
2019-03-21 00:14:59 -04:00
};
}