nix-ros-overlay/distros/jazzy/quality-of-service-demo-cpp/default.nix

26 lines
1.1 KiB
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, example-interfaces, launch, launch-ros, launch-testing, rclcpp, rclcpp-components, rcutils, rmw, rmw-implementation-cmake, sensor-msgs, std-msgs }:
buildRosPackage {
pname = "ros-jazzy-quality-of-service-demo-cpp";
version = "0.33.5-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/demos-release/archive/release/jazzy/quality_of_service_demo_cpp/0.33.5-1.tar.gz";
name = "0.33.5-1.tar.gz";
sha256 = "9a88f3b1c4f64f6d79307d459c794ae976ddec8d67993b67545b62e73388e7a7";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake rmw-implementation-cmake ];
checkInputs = [ ament-lint-auto ament-lint-common launch launch-testing ];
propagatedBuildInputs = [ example-interfaces launch-ros rclcpp rclcpp-components rcutils rmw sensor-msgs std-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = "C++ Demo applications for Quality of Service features";
license = with lib.licenses; [ asl20 ];
};
}