mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-28 17:35:32 +03:00
24 lines
869 B
Nix
24 lines
869 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-flake8, rclpy, pythonPackages, ament-pep257, std-msgs, ament-copyright }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-quality-of-service-demo-py";
|
|
version = "0.7.9-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/demos-release/archive/release/dashing/quality_of_service_demo_py/0.7.9-1.tar.gz";
|
|
name = "0.7.9-1.tar.gz";
|
|
sha256 = "e1b32c65445720391e9e857ecbaf26a28be89eeaa7f3770af8d27d1c1c6e5c36";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-flake8 ament-copyright pythonPackages.pytest ament-pep257 ];
|
|
propagatedBuildInputs = [ rclpy std-msgs ];
|
|
|
|
meta = {
|
|
description = ''Python Demo applications for Quality of Service features'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|