mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 21:50:38 +03:00
29 lines
1.5 KiB
Nix
29 lines
1.5 KiB
Nix
|
|
# Copyright 2020 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-lint-auto, builtin-interfaces, launch-ros, rclcpp, rclcpp-lifecycle, rosidl-default-generators, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-system-modes";
|
|
version = "0.4.1-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/microROS/system_modes-release/archive/release/eloquent/system_modes/0.4.1-1.tar.gz";
|
|
name = "0.4.1-1.tar.gz";
|
|
sha256 = "d26afbc85de5d1797383ae51103eb307d722b505fe7e8da12132965e0cd4e2aa";
|
|
};
|
|
|
|
buildType = "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-lint-auto ];
|
|
propagatedBuildInputs = [ builtin-interfaces launch-ros rclcpp rclcpp-lifecycle rosidl-default-generators std-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 ];
|
|
};
|
|
}
|