1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 22:20:34 +03:00
nix-ros-overlay/distros/rolling/plotjuggler/default.nix

26 lines
934 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-index-cpp, binutils, boost, cppzmq, fastcdr, lz4, protobuf, qt5, rclcpp, zstd }:
buildRosPackage {
pname = "ros-rolling-plotjuggler";
version = "3.9.0-r2";
src = fetchurl {
url = "https://github.com/ros2-gbp/plotjuggler-release/archive/release/rolling/plotjuggler/3.9.0-2.tar.gz";
name = "3.9.0-2.tar.gz";
sha256 = "4b015cbe9c6d793a2934d120bcf01338e90278c2657a29a773e73a6dc797769f";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
propagatedBuildInputs = [ ament-index-cpp binutils boost cppzmq fastcdr lz4 protobuf qt5.qtbase qt5.qtsvg qt5.qtwebsockets qt5.qtx11extras rclcpp zstd ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''PlotJuggler: juggle with data'';
license = with lib.licenses; [ mpl20 ];
};
}