1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/dashing/system-modes/default.nix

27 lines
1.3 KiB
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rclcpp-lifecycle, boost, ament-cmake-ros, ament-cmake-cppcheck, std-msgs, ament-cmake-cpplint, builtin-interfaces, ament-cmake, ament-cmake-flake8, ament-cmake-pep257, ament-cmake-uncrustify, ament-cmake-gtest, ament-cmake-gmock, rosidl-default-generators, rclcpp, ament-lint-auto }:
buildRosPackage {
pname = "ros-dashing-system-modes";
version = "0.1.4-r1";
src = fetchurl {
url = "https://github.com/microROS/system_modes-release/archive/release/dashing/system_modes/0.1.4-1.tar.gz";
name = "0.1.4-1.tar.gz";
sha256 = "b2eb0ff85a3f98c18d0b23c8599579e2e3a200d891a2a1de36d356cce9ecce60";
};
buildType = "ament_cmake";
buildInputs = [ rclcpp-lifecycle boost rclcpp std-msgs rosidl-default-generators builtin-interfaces ];
checkInputs = [ ament-cmake-cppcheck ament-cmake-cpplint ament-cmake-flake8 ament-lint-auto ament-cmake-uncrustify ament-cmake ament-cmake-gmock ament-cmake-pep257 ament-cmake-gtest ];
propagatedBuildInputs = [ rclcpp-lifecycle boost rclcpp std-msgs rosidl-default-generators builtin-interfaces ];
nativeBuildInputs = [ ament-cmake-ros ];
meta = {
description = ''Model-based distributed configuration handling.'';
license = with lib.licenses; [ asl20 ];
};
}