nix-ros-overlay/distros/dashing/system-modes-examples/default.nix
2020-08-24 18:45:07 -04:00

25 lines
1.1 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, rclcpp, rclcpp-lifecycle, system-modes }:
buildRosPackage {
pname = "ros-dashing-system-modes-examples";
version = "0.3.0-r1";
src = fetchurl {
url = "https://github.com/microROS/system_modes-release/archive/release/dashing/system_modes_examples/0.3.0-1.tar.gz";
name = "0.3.0-1.tar.gz";
sha256 = "33e47e08892e3f6688057af8f509cb0589d487e0f434f7a60aa68db1ede4f0c8";
};
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 ];
};
}