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/dashing/marti-visualization-msgs/default.nix
2019-11-07 17:46:51 -05:00

25 lines
989 B
Nix

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, builtin-interfaces, ament-cmake, rosidl-default-generators, sensor-msgs, rosidl-default-runtime, geometry-msgs }:
buildRosPackage {
pname = "ros-dashing-marti-visualization-msgs";
version = "1.0.0-r1";
src = fetchurl {
url = "https://github.com/swri-robotics-gbp/marti_messages-release/archive/release/dashing/marti_visualization_msgs/1.0.0-1.tar.gz";
name = "1.0.0-1.tar.gz";
sha256 = "1055aae60deb9ede12e30e0f185ec3ebcc69b201945c6741edcbf2b49bbc7b06";
};
buildType = "ament_cmake";
buildInputs = [ builtin-interfaces sensor-msgs geometry-msgs ];
propagatedBuildInputs = [ builtin-interfaces sensor-msgs rosidl-default-runtime geometry-msgs ];
nativeBuildInputs = [ rosidl-default-generators ament-cmake ];
meta = {
description = ''marti_visualization_msgs'';
license = with lib.licenses; [ bsdOriginal ];
};
}