1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/jazzy/examples-rclpy-minimal-client/default.nix

25 lines
908 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, example-interfaces, python3Packages, rclpy, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-examples-rclpy-minimal-client";
version = "0.19.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/jazzy/examples_rclpy_minimal_client/0.19.4-1.tar.gz";
name = "0.19.4-1.tar.gz";
sha256 = "742f1f2cda108861f80990a7fe1f27de2c230a4b69b6d26deb35a77de57f6baa";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
propagatedBuildInputs = [ example-interfaces rclpy std-msgs ];
meta = {
description = "Examples of minimal service clients using rclpy.";
license = with lib.licenses; [ asl20 ];
};
}