mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 02:34:50 +03:00
30 lines
1.6 KiB
Nix
30 lines
1.6 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-cppcheck, ament-cmake-cpplint, ament-cmake-flake8, ament-cmake-gmock, ament-cmake-gtest, ament-cmake-pep257, ament-cmake-uncrustify, ament-index-python, ament-lint-auto, builtin-interfaces, launch-ros, launch-testing-ament-cmake, launch-testing-ros, rclcpp, rclcpp-lifecycle, ros2run, system-modes-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-system-modes";
|
|
version = "0.9.0-r6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/system_modes-release/archive/release/jazzy/system_modes/0.9.0-6.tar.gz";
|
|
name = "0.9.0-6.tar.gz";
|
|
sha256 = "bf8221bd4de93dda127693e2584bec8acfe3b30d12eab7562b4a7ba87bcabb43";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-cppcheck ament-cmake-cpplint ament-cmake-flake8 ament-cmake-gmock ament-cmake-gtest ament-cmake-pep257 ament-cmake-uncrustify ament-index-python ament-lint-auto launch-testing-ament-cmake launch-testing-ros ros2run ];
|
|
propagatedBuildInputs = [ builtin-interfaces launch-ros rclcpp rclcpp-lifecycle system-modes-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "The system modes concept assumes that a robotics system is built
|
|
from components with a lifecycle. It adds a notion of (sub-)systems,
|
|
hiararchically grouping these nodes, as well as a notion of modes
|
|
that determine the configuration of these nodes and (sub-)systems in
|
|
terms of their parameter values.";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|