2023-09-15 13:13:19 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2023-09-15 13:13:19 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-cmake-xmllint, ament-lint-auto, ament-lint-common, cmake, ros-environment }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-mola-demos";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "1.7.0-r1";
|
2023-09-15 13:13:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros2-gbp/mola-release/archive/release/humble/mola_demos/1.7.0-1.tar.gz";
|
|
|
|
name = "1.7.0-1.tar.gz";
|
|
|
|
sha256 = "10a6f2df13c2727a1389068c5e8186fa9d1339e6acc42a1e662bcbb270c6ac41";
|
2023-09-15 13:13:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake ament-cmake-gtest ament-cmake-xmllint cmake ros-environment ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ament-cmake-gtest cmake ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Demo and example launch files for MOLA";
|
2023-09-15 13:13:19 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|