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/rolling/polygon-msgs/default.nix

26 lines
898 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-rolling-polygon-msgs";
version = "1.0.2-r1";
src = fetchurl {
url = "https://github.com/MetroRobots-release/polygon_ros-release/archive/release/rolling/polygon_msgs/1.0.2-1.tar.gz";
name = "1.0.2-1.tar.gz";
sha256 = "f9ee21cbf6498ce08661e9ecb7386c449db11ef62a7410e2734709441fdf6ec4";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rosidl-default-generators ];
propagatedBuildInputs = [ rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''General purpose two-dimensional polygons. Formerly a part of nav_2d_msgs'';
license = with lib.licenses; [ bsd3 ];
};
}