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/distros/rolling/qt-dotgraph/default.nix

25 lines
931 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-copyright, ament-flake8, ament-pep257, ament-xmllint, python-qt-binding, python3Packages }:
buildRosPackage {
pname = "ros-rolling-qt-dotgraph";
version = "2.9.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/rolling/qt_dotgraph/2.9.0-1.tar.gz";
name = "2.9.0-1.tar.gz";
sha256 = "328e7fcc7be6dbc8f8d42c446249ee56de426fa6444b8b6d5513510c699cb01c";
};
buildType = "ament_python";
checkInputs = [ ament-copyright ament-flake8 ament-pep257 ament-xmllint python3Packages.pytest ];
propagatedBuildInputs = [ python-qt-binding python3Packages.pydot python3Packages.pygraphviz ];
meta = {
description = "qt_dotgraph provides helpers to work with dot graphs.";
license = with lib.licenses; [ bsdOriginal ];
};
}