2020-09-09 15:37:07 -04:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-09-09 15:37:07 -04:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2020-12-11 13:16:21 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-index-cpp, binutils, boost, cppzmq, qt5 }:
|
2020-09-09 15:37:07 -04:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-plotjuggler";
|
2022-03-11 13:36:15 +00:00
|
|
|
version = "3.4.3-r1";
|
2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-03-11 13:36:15 +00:00
|
|
|
url = "https://github.com/facontidavide/plotjuggler-release/archive/release/foxy/plotjuggler/3.4.3-1.tar.gz";
|
|
|
|
name = "3.4.3-1.tar.gz";
|
|
|
|
sha256 = "be3ba195a60718a5080a63e34385447a84daba6f8d74c15a771652321bb6f502";
|
2020-09-09 15:37:07 -04:00
|
|
|
};
|
|
|
|
|
2022-03-28 21:23:37 -04:00
|
|
|
buildType = "ament_cmake";
|
2020-12-11 13:16:21 +00:00
|
|
|
propagatedBuildInputs = [ ament-index-cpp binutils boost cppzmq qt5.qtbase qt5.qtsvg qt5.qtwebsockets qt5.qtx11extras ];
|
2020-09-09 15:37:07 -04:00
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''PlotJuggler: juggle with data'';
|
2022-03-28 21:23:37 -04:00
|
|
|
license = with lib.licenses; [ "LGPL-3.0-only" ];
|
2020-09-09 15:37:07 -04:00
|
|
|
};
|
|
|
|
}
|