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/jazzy/quality-of-service-demo-py/default.nix

24 lines
893 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, python3Packages, rclpy, sensor-msgs, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-quality-of-service-demo-py";
version = "0.33.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/jazzy/quality_of_service_demo_py/0.33.5-1.tar.gz";
name = "0.33.5-1.tar.gz";
sha256 = "b714dafee9c396f18c874a429609facf68d5ccd1735da950911e05f7fbaa56fd";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 python3Packages.pytest ];
propagatedBuildInputs = [ rclpy sensor-msgs std-msgs ];
meta = {
description = "Python Demo applications for Quality of Service features";
license = with lib.licenses; [ asl20 ];
};
}