1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 13:40:32 +03:00

regenerate all distros, Fri Jan 24 13:19:17 2025

This commit is contained in:
Superflore 2025-01-24 13:19:18 +00:00 committed by Ben Wolsieffer
parent 503be40676
commit c761860cb6
477 changed files with 2830 additions and 1823 deletions

View file

@ -0,0 +1,26 @@
# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-core, ament-lint-auto, ament-lint-common, generate-parameter-library-example, rclcpp, rclcpp-components }:
buildRosPackage {
pname = "ros-rolling-generate-parameter-library-example-external";
version = "0.4.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/generate_parameter_library-release/archive/release/rolling/generate_parameter_library_example_external/0.4.0-1.tar.gz";
name = "0.4.0-1.tar.gz";
sha256 = "30ddada3584d23262ecd828e268cdcc0664961d417fa21b3bb92cbd941dda7b3";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ ament-cmake-core generate-parameter-library-example rclcpp rclcpp-components ];
nativeBuildInputs = [ ament-cmake ament-cmake-core ];
meta = {
description = "Example usage of a parameter header generated in another package.";
license = with lib.licenses; [ bsd3 ];
};
}