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/eloquent/swri-console/default.nix

25 lines
958 B
Nix

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, boost, qt5, rcl-interfaces, rclcpp, rosidl-default-generators, rosidl-default-runtime }:
buildRosPackage {
pname = "ros-eloquent-swri-console";
version = "2.0.0-r1";
src = fetchurl {
url = "https://github.com/swri-robotics-gbp/swri_console-release/archive/release/eloquent/swri_console/2.0.0-1.tar.gz";
name = "2.0.0-1.tar.gz";
sha256 = "874260be784119341dd355ab712fb51bd41f4ea9e29e4a312d9b96da3fca4900";
};
buildType = "ament_cmake";
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 ];
};
}