2020-09-09 15:37:07 -04:00
|
|
|
|
2021-01-22 13:37:51 +00:00
|
|
|
# Copyright 2021 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";
|
2021-06-11 22:09:04 +00:00
|
|
|
version = "3.1.2-r1";
|
2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-11 22:09:04 +00:00
|
|
|
url = "https://github.com/facontidavide/plotjuggler-release/archive/release/foxy/plotjuggler/3.1.2-1.tar.gz";
|
|
|
|
name = "3.1.2-1.tar.gz";
|
|
|
|
sha256 = "b0d863a857340ecb78d82ee39f73629c26e47e48f44ee70f048c50b21d791431";
|
2020-09-09 15:37:07 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
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'';
|
|
|
|
license = with lib.licenses; [ lgpl2 ];
|
|
|
|
};
|
|
|
|
}
|