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
|
|
|
|
|
2023-06-19 17:15:23 -04:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-catch2, ament-cmake-uncrustify, cmake, nlohmann-json-schema-validator-vendor, nlohmann_json, rmf-api-msgs, rmf-task }:
|
2022-11-04 13:38:03 +00:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-humble-rmf-task-sequence";
|
2024-01-19 13:36:49 +00:00
|
|
|
version = "2.1.8-r1";
|
2022-11-04 13:38:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-01-19 13:36:49 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rmf_task-release/archive/release/humble/rmf_task_sequence/2.1.8-1.tar.gz";
|
|
|
|
name = "2.1.8-1.tar.gz";
|
|
|
|
sha256 = "10af150c128a5d85dc7123ecabc45211eff81ba7c6b48a94076f5fe02cbd82b5";
|
2022-11-04 13:38:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2023-06-19 17:15:23 -04:00
|
|
|
buildInputs = [ cmake ];
|
2022-11-04 13:38:03 +00:00
|
|
|
checkInputs = [ ament-cmake-catch2 ament-cmake-uncrustify ];
|
|
|
|
propagatedBuildInputs = [ nlohmann-json-schema-validator-vendor nlohmann_json rmf-api-msgs rmf-task ];
|
2023-06-19 17:15:23 -04:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2022-11-04 13:38:03 +00:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Implementation of phase-sequence tasks for the Robotics Middleware Framework";
|
2022-11-04 13:38:03 +00:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|