2022-12-09 19:20:15 -05:00
|
|
|
|
2024-01-19 13:36:49 +00:00
|
|
|
# Copyright 2024 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-05-10 13:12:06 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ros-base, ros-gz-bridge, ros-gz-image, ros-gz-interfaces, ros-gz-sim }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-simulation";
|
2024-10-11 13:52:59 +00:00
|
|
|
version = "0.12.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-10-11 13:52:59 +00:00
|
|
|
url = "https://github.com/ros2-gbp/variants-release/archive/release/rolling/simulation/0.12.0-1.tar.gz";
|
|
|
|
name = "0.12.0-1.tar.gz";
|
|
|
|
sha256 = "eb793d642d48fe9ce674462bb5f5f015f8c261d8bf18beff97156aa0db423d6f";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ];
|
2024-05-10 13:12:06 +00:00
|
|
|
propagatedBuildInputs = [ ros-base ros-gz-bridge ros-gz-image ros-gz-interfaces ros-gz-sim ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-05-10 13:12:06 +00:00
|
|
|
description = "A package which extends 'ros_base' and includes simulation packages.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|