mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-20 14:18:39 +03:00
27 lines
1.3 KiB
Nix
27 lines
1.3 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, launch-testing-ros, rosidl-cmake, rcutils, rclcpp-components, launch, std-msgs, rosidl-default-runtime, rmw-implementation-cmake, launch-testing, ament-lint-common, ament-cmake, launch-testing-ament-cmake, ament-cmake-pytest, rosidl-default-generators, rclcpp, ament-lint-auto }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-logging-demo";
|
||
|
version = "0.8.4-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/eloquent/logging_demo/0.8.4-1.tar.gz";
|
||
|
name = "0.8.4-1.tar.gz";
|
||
|
sha256 = "5d60f5d4532e674c311fba3dfd44669425563b86c4f704a71c71e0a14d494aed";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ rosidl-cmake rcutils rclcpp-components std-msgs rclcpp ];
|
||
|
checkInputs = [ launch-testing-ros launch rmw-implementation-cmake launch-testing ament-lint-common launch-testing-ament-cmake ament-cmake-pytest ament-lint-auto ];
|
||
|
propagatedBuildInputs = [ rcutils rclcpp-components rosidl-default-runtime std-msgs rclcpp ];
|
||
|
nativeBuildInputs = [ rosidl-default-generators ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Examples for using and configuring loggers.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|