mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-11 18:24:50 +03:00
25 lines
964 B
Nix
25 lines
964 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, action-msgs, ament-cmake, builtin-interfaces, geometry-msgs, nav-msgs, nav2-common, rclcpp, rosidl-default-generators, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-humble-nav2-msgs";
|
|
version = "1.1.18-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/humble/nav2_msgs/1.1.18-1.tar.gz";
|
|
name = "1.1.18-1.tar.gz";
|
|
sha256 = "d4edaae5e8305134864f79b2b01394c54460d614d6092f795d1e7aef6adc38aa";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake nav2-common ];
|
|
propagatedBuildInputs = [ action-msgs builtin-interfaces geometry-msgs nav-msgs rclcpp rosidl-default-generators std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "Messages and service files for the Nav2 stack";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|