2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-pytest, ament-cmake, ament-lint-common, python3Packages, ament-lint-auto, python-qt-binding }:
|
2019-09-06 12:16:03 -04:00
|
|
|
buildRosPackage rec {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-qt-dotgraph";
|
|
|
|
version = "1.0.6-r1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-09-06 12:16:03 -04:00
|
|
|
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/dashing/qt_dotgraph/1.0.6-1.tar.gz";
|
|
|
|
name = "1.0.6-1.tar.gz";
|
2019-09-04 17:11:04 -04:00
|
|
|
sha256 = "ec571aebdd662bc0a874486a9cf89a8ebda1106db78496f2cf6c67540c4236a4";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
checkInputs = [ ament-lint-auto ament-cmake-pytest python3Packages.pygraphviz ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ python-qt-binding python3Packages.pydot ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''qt_dotgraph provides helpers to work with dot graphs.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|