1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/foxy/gazebo-dev/default.nix

26 lines
795 B
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, gazebo_11 }:
buildRosPackage {
pname = "ros-foxy-gazebo-dev";
version = "3.5.3-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/gazebo_ros_pkgs-release/archive/release/foxy/gazebo_dev/3.5.3-1.tar.gz";
name = "3.5.3-1.tar.gz";
sha256 = "36aae42a263db7463a3179bed9b352a35ac7ca573986857a99467932b9e1c589";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ gazebo_11 ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Provides a cmake config for the default version of Gazebo for the ROS distribution.'';
license = with lib.licenses; [ asl20 ];
};
}