mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-13 05:39:01 +03:00
25 lines
985 B
Nix
25 lines
985 B
Nix
|
|
# 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 ];
|
|
};
|
|
}
|