mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
26 lines
981 B
Nix
26 lines
981 B
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-pytest, ament-lint-auto, ament-lint-common, python-qt-binding, python3Packages }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-qt-dotgraph";
|
|
version = "2.7.5-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/jazzy/qt_dotgraph/2.7.5-1.tar.gz";
|
|
name = "2.7.5-1.tar.gz";
|
|
sha256 = "4e7d227dac23e983981e793bbad9db976bed9c8b0ed45348bfb8fc6aa7e00365";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-cmake-pytest ament-lint-auto ament-lint-common python3Packages.pygraphviz ];
|
|
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 ];
|
|
};
|
|
}
|