mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 03:04:49 +03:00
26 lines
1,015 B
Nix
26 lines
1,015 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-rolling-rmf-task-sequence";
|
|
version = "2.4.0-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/rmf_task-release/archive/release/rolling/rmf_task_sequence/2.4.0-1.tar.gz";
|
|
name = "2.4.0-1.tar.gz";
|
|
sha256 = "25183800004c54654c73339b1c0998ffdf9836a784e16d4ce97301a243d63561";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|