2022-11-04 13:38:03 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-11-04 13:38:03 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2022-12-02 13:31:38 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, pmb2-gazebo }:
|
2022-11-04 13:38:03 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-pmb2-simulation";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "4.7.0-r1";
|
2022-11-04 13:38:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/pal-gbp/pmb2_simulation-release/archive/release/humble/pmb2_simulation/4.7.0-1.tar.gz";
|
|
|
|
name = "4.7.0-1.tar.gz";
|
|
|
|
sha256 = "8e5c9f844747f138079580c51cf0f573e737d05b8d57a404d4679b5a4153f918";
|
2022-11-04 13:38:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ ament-cmake ];
|
2022-11-04 13:38:03 +00:00
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2022-12-02 13:31:38 +00:00
|
|
|
propagatedBuildInputs = [ pmb2-gazebo ];
|
2022-11-04 13:38:03 +00:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "PMB2-specific simulation components. These include plugins
|
|
|
|
and launch scripts necessary for running PMB2 in simulation.";
|
2022-11-04 13:38:03 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|