1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/crystal/qt-dotgraph/default.nix
2019-09-05 22:48:11 -04:00

24 lines
923 B
Nix

# 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 }:
buildRosPackage {
pname = "ros-crystal-qt-dotgraph";
version = "1.0.6-r1";
src = fetchurl {
url = https://github.com/ros2-gbp/qt_gui_core-release/archive/release/crystal/qt_dotgraph/1.0.6-1.tar.gz;
sha256 = "f67cf44c9975de2788be0dce6898d2c7924516ae4e74f1354c94adceb3ed6d23";
};
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 ];
};
}