mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
1,007 B
Nix
26 lines
1,007 B
Nix
|
|
# Copyright 2024 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-catch2, ament-cmake-uncrustify, cmake, nlohmann-json-schema-validator-vendor, nlohmann_json, rmf-api-msgs, rmf-task }:
|
|
buildRosPackage {
|
|
pname = "ros-iron-rmf-task-sequence";
|
|
version = "2.2.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rmf_task-release/archive/release/iron/rmf_task_sequence/2.2.5-1.tar.gz";
|
|
name = "2.2.5-1.tar.gz";
|
|
sha256 = "6f92025a02f5ebe15f6e07ba0f26308861de13074b611a2a9715df2b3f6e9a2e";
|
|
};
|
|
|
|
buildType = "cmake";
|
|
buildInputs = [ cmake ];
|
|
checkInputs = [ ament-cmake-catch2 ament-cmake-uncrustify ];
|
|
propagatedBuildInputs = [ nlohmann-json-schema-validator-vendor nlohmann_json rmf-api-msgs rmf-task ];
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
description = "Implementation of phase-sequence tasks for the Robotics Middleware Framework";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|