2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-cpplint, ament-cmake-lint-cmake, ament-cmake-uncrustify, ament-cmake-xmllint, ament-lint-auto, gz-plugin-vendor, gz-sim-vendor }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-jazzy-leo-gz-plugins";
|
2024-11-15 13:25:01 +00:00
|
|
|
version = "2.0.1-r1";
|
2024-05-24 14:00:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-15 13:25:01 +00:00
|
|
|
url = "https://github.com/ros2-gbp/leo_simulator-release/archive/release/jazzy/leo_gz_plugins/2.0.1-1.tar.gz";
|
|
|
|
name = "2.0.1-1.tar.gz";
|
|
|
|
sha256 = "803a5a36e65eb4c4146e20ff1a02c17bb225f4fe81327103d5db85f0b0dfb6b9";
|
2024-05-24 14:00:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
|
|
|
checkInputs = [ ament-cmake-copyright ament-cmake-cpplint ament-cmake-lint-cmake ament-cmake-uncrustify ament-cmake-xmllint ament-lint-auto ];
|
|
|
|
propagatedBuildInputs = [ gz-plugin-vendor gz-sim-vendor ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Plugins for Leo Rover Gazebo simulation in ROS 2";
|
|
|
|
license = with lib.licenses; [ mit ];
|
|
|
|
};
|
|
|
|
}
|