nix-ros-overlay/distros/humble/autoware-perception-msgs/default.nix

26 lines
1.1 KiB
Nix

# 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, builtin-interfaces, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs, unique-identifier-msgs }:
buildRosPackage {
pname = "ros-humble-autoware-perception-msgs";
version = "1.4.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/autoware_msgs-release/archive/release/humble/autoware_perception_msgs/1.4.0-1.tar.gz";
name = "1.4.0-1.tar.gz";
sha256 = "6e5f8a0af5ed941ef2b566e5eaa7e6c1e85b1fa8fecf8bc38307772a0dff8056";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake-auto rosidl-default-generators ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ builtin-interfaces geometry-msgs rosidl-default-runtime std-msgs unique-identifier-msgs ];
nativeBuildInputs = [ ament-cmake-auto rosidl-default-generators ];
meta = {
description = "Autoware perception messages package.";
license = with lib.licenses; [ asl20 ];
};
}