1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-15 14:40:58 +03:00
nix-ros-overlay/distros/eloquent/system-modes-examples/default.nix

26 lines
1.1 KiB
Nix
Raw Normal View History

# 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, rclcpp, rclcpp-lifecycle, system-modes }:
buildRosPackage {
pname = "ros-eloquent-system-modes-examples";
version = "0.3.0-r2";
src = fetchurl {
url = "https://github.com/microROS/system_modes-release/archive/release/eloquent/system_modes_examples/0.3.0-2.tar.gz";
name = "0.3.0-2.tar.gz";
sha256 = "a6fa7e06025e934387f1b6910fc5c1b9cabc3e758edc962deaa5056a9b2ed298";
};
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 = [ rclcpp rclcpp-lifecycle system-modes ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Simple example system for system_modes package.'';
license = with lib.licenses; [ asl20 ];
};
}