1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-12 05:16:30 +03:00
nix-ros-overlay/distros/rolling/polygon-msgs/default.nix

26 lines
885 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-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/polygon_ros-release/archive/release/rolling/polygon_msgs/1.0.2-2.tar.gz";
name = "1.0.2-2.tar.gz";
sha256 = "91a986d4eed08962d9dfd093e610310821ed34139595c24a65ac4534fcfc8bbb";
};
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 ];
};
}