mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
26 lines
1 KiB
Nix
26 lines
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, geometry-msgs, rosidl-default-generators, rosidl-default-runtime, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-autoware-localization-msgs";
|
|
version = "1.8.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/autoware_msgs-release/archive/release/humble/autoware_localization_msgs/1.8.0-1.tar.gz";
|
|
name = "1.8.0-1.tar.gz";
|
|
sha256 = "f63f2a9b919ab53d0e47e6753fe621eb53f577cf9d3c0095ff9d2a08e414f317";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|