1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/rolling/rmf-task/default.nix

25 lines
824 B
Nix
Raw Normal View History

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-catch2, ament-cmake-uncrustify, eigen, rmf-battery, rmf-utils }:
buildRosPackage {
pname = "ros-rolling-rmf-task";
version = "2.1.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rmf_task-release/archive/release/rolling/rmf_task/2.1.2-1.tar.gz";
name = "2.1.2-1.tar.gz";
sha256 = "549c84e258be38c2fb6522bd0803e9085bc470cd3772d4a91421fc4949c2a9f7";
};
buildType = "cmake";
checkInputs = [ ament-cmake-catch2 ament-cmake-uncrustify ];
propagatedBuildInputs = [ eigen rmf-battery rmf-utils ];
meta = {
description = ''Package for managing tasks in the Robotics Middleware Framework'';
license = with lib.licenses; [ asl20 ];
};
}