1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00
nix-ros-overlay/eloquent/rqt-image-view/default.nix

26 lines
985 B
Nix
Raw Normal View History

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, cv-bridge, geometry-msgs, image-transport, qt-gui-cpp, qt5, rclcpp, rqt-gui, rqt-gui-cpp, sensor-msgs }:
buildRosPackage {
pname = "ros-eloquent-rqt-image-view";
version = "1.0.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/rqt_image_view-release/archive/release/eloquent/rqt_image_view/1.0.4-1.tar.gz";
name = "1.0.4-1.tar.gz";
sha256 = "eb07ef4833f4fcf8d227e9a2ef3aa802df3e81cca176fe4b4d835682f9fe9156";
};
buildType = "ament_cmake";
buildInputs = [ qt5.qtbase ];
propagatedBuildInputs = [ cv-bridge geometry-msgs image-transport qt-gui-cpp rclcpp rqt-gui rqt-gui-cpp sensor-msgs ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''rqt_image_view provides a GUI plugin for displaying images using image_transport.'';
license = with lib.licenses; [ bsdOriginal ];
};
}