mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
848 B
Nix
24 lines
848 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, rosbag-storage, boost, catkin, rosgraph-msgs, qt5, roscpp }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-melodic-swri-console";
|
||
|
version = "1.1.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/swri-robotics-gbp/swri_console-release/archive/release/melodic/swri_console/1.1.0-0.tar.gz;
|
||
|
sha256 = "3b316832e42c12ebf733b8f9f299ad56326bdeea281c36e1323dfe6c195a4cfe";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ rosbag-storage rosgraph-msgs boost roscpp qt5.qtbase ];
|
||
|
nativeBuildInputs = [ rosbag-storage rosgraph-msgs boost catkin roscpp qt5.qtbase ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''A rosout GUI viewer developed at Southwest Research Insititute as an
|
||
|
alternative to rqt_console.'';
|
||
|
#license = lib.licenses.BSD;
|
||
|
};
|
||
|
}
|