1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/leo-simulator/default.nix

27 lines
1 KiB
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-copyright, ament-cmake-lint-cmake, ament-cmake-xmllint, ament-lint-auto, leo-gz-bringup, leo-gz-plugins, leo-gz-worlds }:
buildRosPackage {
pname = "ros-rolling-leo-simulator";
version = "2.0.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/leo_simulator-release/archive/release/rolling/leo_simulator/2.0.0-1.tar.gz";
name = "2.0.0-1.tar.gz";
sha256 = "10f65986cce44ccb3d70ddc0d1cee4b4610af342a0d6d0dd1b13d167576a2df1";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-copyright ament-cmake-lint-cmake ament-cmake-xmllint ament-lint-auto ];
propagatedBuildInputs = [ leo-gz-bringup leo-gz-plugins leo-gz-worlds ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "Metapackage for Leo Rover Gazebo simulation in ROS2";
license = with lib.licenses; [ mit ];
};
}