1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00
nix-ros-overlay/distros/iron/rmf-task-sequence/default.nix

27 lines
1,009 B
Nix
Raw Normal View History

# 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.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_task-release/archive/release/iron/rmf_task_sequence/2.2.4-1.tar.gz";
name = "2.2.4-1.tar.gz";
sha256 = "0ff3d7ada86a316ead9cd82ffe0b06fd25f6a98f01c3d2b9f68bbc0b3a2b221e";
};
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 ];
};
}