1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/distros/jazzy/autoware-localization-msgs/default.nix

27 lines
1 KiB
Nix
Raw Permalink Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-autoware-localization-msgs";
version = "1.7.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/autoware_msgs-release/archive/release/jazzy/autoware_localization_msgs/1.7.0-1.tar.gz";
name = "1.7.0-1.tar.gz";
sha256 = "2387ce8e1f46041e5fab2018864f656b4300ab39ceb8653a1d8c90b3c93a6a07";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-auto rosidl-default-generators ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ geometry-msgs rosidl-default-runtime std-msgs ];
nativeBuildInputs = [ ament-cmake-auto rosidl-default-generators ];
meta = {
description = "Autoware localization messages package.";
license = with lib.licenses; [ asl20 ];
};
}