1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-16 15:10:33 +03:00
nix-ros-overlay/dashing/nav2-msgs/default.nix

27 lines
1.2 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, builtin-interfaces, ament-cmake-pytest, ament-cmake, ament-lint-common, launch-testing, rosidl-default-generators, ament-cmake-gtest, launch, nav2-common, action-msgs, rclcpp, std-msgs, ament-lint-auto, rosidl-default-runtime, geometry-msgs }:
buildRosPackage {
pname = "ros-dashing-nav2-msgs";
version = "0.2.4-r1";
src = fetchurl {
url = "https://github.com/SteveMacenski/navigation2-release/archive/release/dashing/nav2_msgs/0.2.4-1.tar.gz";
name = "0.2.4-1.tar.gz";
sha256 = "c62476f75d9029d1289a94ec66c0b478a7aa19dc43c2074d7241ac253d34cfd0";
};
buildType = "ament_cmake";
buildInputs = [ builtin-interfaces rosidl-default-generators nav2-common action-msgs rclcpp std-msgs geometry-msgs ];
checkInputs = [ ament-cmake-pytest ament-lint-common launch-testing ament-cmake-gtest launch ament-lint-auto ];
propagatedBuildInputs = [ builtin-interfaces action-msgs rclcpp std-msgs rosidl-default-runtime geometry-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Messages and service files for the navigation2 stack'';
license = with lib.licenses; [ asl20 ];
};
}