2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# 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";
|
2020-12-25 13:15:54 +00:00
|
|
|
version = "3.0.5-r2";
|
2020-09-09 15:37:07 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-12-25 13:15:54 +00:00
|
|
|
url = "https://github.com/facontidavide/plotjuggler-release/archive/release/foxy/plotjuggler/3.0.5-2.tar.gz";
|
|
|
|
name = "3.0.5-2.tar.gz";
|
|
|
|
sha256 = "1163bdf11db902632f393eb66631b3cbccd14d76a5f9a7498be4cc93ce039231";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|