2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-catch2, ament-cmake-uncrustify, nlohmann-json-schema-validator-vendor, nlohmann_json, rmf-api-msgs, rmf-task }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rmf-task-sequence";
|
|
|
|
version = "2.1.2-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/ros2-gbp/rmf_task-release/archive/release/rolling/rmf_task_sequence/2.1.2-1.tar.gz";
|
|
|
|
name = "2.1.2-1.tar.gz";
|
|
|
|
sha256 = "4120ea735e6ffd3b001941752987c0d3c4f3fd77fde85897a19da975e96ef608";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
checkInputs = [ ament-cmake-catch2 ament-cmake-uncrustify ];
|
|
|
|
propagatedBuildInputs = [ nlohmann-json-schema-validator-vendor nlohmann_json rmf-api-msgs rmf-task ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Implementation of phase-sequence tasks for the Robotics Middleware Framework'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|