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

26 lines
937 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, rclcpp, rcutils, sensor-msgs, statistics-msgs }:
buildRosPackage {
pname = "ros-jazzy-topic-statistics-demo";
version = "0.33.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/jazzy/topic_statistics_demo/0.33.5-1.tar.gz";
name = "0.33.5-1.tar.gz";
sha256 = "7ebaeedb1b7592931b6bff2c6eb6dde7007ebb89a0c8b28b64e5e88ed48a120d";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common ];
propagatedBuildInputs = [ rclcpp rcutils sensor-msgs statistics-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "C++ demo application for topic statistics feature.";
license = with lib.licenses; [ asl20 ];
};
}