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/distros/foxy/swri-console/default.nix
Ben Wolsieffer d31e04aef7 Revert "Remove foxy."
This reverts commit 113129c9da.
2023-09-12 19:34:23 -04:00

26 lines
1 KiB
Nix

# Copyright 2023 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, boost, qt5, rcl-interfaces, rclcpp, ros-environment, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-foxy-swri-console";
version = "2.0.4-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/swri_console-release/archive/release/foxy/swri_console/2.0.4-1.tar.gz";
name = "2.0.4-1.tar.gz";
sha256 = "9ffc3ef8bbdb8ba24e94e62fc1f5b791cd725c71bdddc87b8da231083b7b18fc";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ros-environment rosidl-default-generators ];
propagatedBuildInputs = [ boost qt5.qtbase rcl-interfaces rclcpp rosidl-default-runtime ];
nativeBuildInputs = [ ament-cmake rosidl-default-generators ];
meta = {
description = ''A rosout GUI viewer developed at Southwest Research Insititute as an
alternative to rqt_console.'';
license = with lib.licenses; [ bsdOriginal ];
};
}