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

25 lines
954 B
Nix

# Copyright 2021 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-dashing-qt-dotgraph";
version = "1.0.9-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/qt_gui_core-release/archive/release/dashing/qt_dotgraph/1.0.9-1.tar.gz";
name = "1.0.9-1.tar.gz";
sha256 = "14a2d03f36a2d163a0b3d6080e9f8c54ddee8c4b3c654942134fcf96d4f3a2c8";
};
buildType = "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 ];
};
}