mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-13 11:14:49 +03:00
27 lines
874 B
Nix
27 lines
874 B
Nix
![]() |
|
||
|
# Copyright 2024 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rclcpp }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-jazzy-examples-rclcpp-minimal-timer";
|
||
|
version = "0.19.3-r2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/examples-release/archive/release/jazzy/examples_rclcpp_minimal_timer/0.19.3-2.tar.gz";
|
||
|
name = "0.19.3-2.tar.gz";
|
||
|
sha256 = "c309df11d0ed2758b71f796a0e147358a3852b5cced369fabd304f518dfdf089";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ament-cmake ];
|
||
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
||
|
propagatedBuildInputs = [ rclcpp ];
|
||
|
nativeBuildInputs = [ ament-cmake ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Examples of minimal nodes which have timers";
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|