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/distros/eloquent/visualization-msgs/default.nix

26 lines
1,013 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-eloquent-visualization-msgs";
version = "0.8.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/common_interfaces-release/archive/release/eloquent/visualization_msgs/0.8.1-1.tar.gz";
name = "0.8.1-1.tar.gz";
sha256 = "ae0eb73d3f65138890896c3bd07841c1f76b9542d864e1d4f63ecfc113a94ffc";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''A package containing some visualization and interaction related message definitions.'';
license = with lib.licenses; [ asl20 ];
};
}