1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/galactic/examples-rclpy-minimal-subscriber/default.nix

24 lines
879 B
Nix

# Copyright 2021 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, pythonPackages, rclpy, std-msgs }:
buildRosPackage {
pname = "ros-galactic-examples-rclpy-minimal-subscriber";
version = "0.11.2-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/examples-release/archive/release/galactic/examples_rclpy_minimal_subscriber/0.11.2-1.tar.gz";
name = "0.11.2-1.tar.gz";
sha256 = "d584bddd315d5dcb2d1a9b0490560be799a8a280555276a8af2ad9855dc97aa1";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
propagatedBuildInputs = [ rclpy std-msgs ];
meta = {
description = ''Examples of minimal subscribers using rclpy.'';
license = with lib.licenses; [ asl20 ];
};
}