mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
25 lines
1.2 KiB
Nix
25 lines
1.2 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, rclcpp, rclcpp-lifecycle, rosidl-default-generators, std-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-eloquent-system-modes";
|
|
version = "0.3.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/microROS/system_modes-release/archive/release/eloquent/system_modes/0.3.0-2.tar.gz";
|
|
name = "0.3.0-2.tar.gz";
|
|
sha256 = "e379f271a01665e4d072021f3339dc2cbae2b585956ec94140f4f5eabf4b92d2";
|
|
};
|
|
|
|
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 rclcpp rclcpp-lifecycle rosidl-default-generators std-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = ''Model-based distributed configuration handling.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|