2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-11-29 13:44:25 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-catch2, ament-cmake-uncrustify, cmake, eigen, nlohmann_json, rmf-battery, rmf-utils }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-rmf-task";
|
2024-11-29 13:44:25 +00:00
|
|
|
version = "2.7.0-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2024-11-29 13:44:25 +00:00
|
|
|
url = "https://github.com/ros2-gbp/rmf_task-release/archive/release/rolling/rmf_task/2.7.0-1.tar.gz";
|
|
|
|
name = "2.7.0-1.tar.gz";
|
|
|
|
sha256 = "d87171e7a5a374eb7a88306bf0f30a0c91ddfddf0c0118ddf7ec9db52f8c1edc";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
2023-05-02 16:50:22 -04:00
|
|
|
buildInputs = [ cmake ];
|
2022-12-09 19:20:15 -05:00
|
|
|
checkInputs = [ ament-cmake-catch2 ament-cmake-uncrustify ];
|
2024-11-29 13:44:25 +00:00
|
|
|
propagatedBuildInputs = [ eigen nlohmann_json rmf-battery rmf-utils ];
|
2023-05-02 16:50:22 -04:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Package for managing tasks in the Robotics Middleware Framework";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|