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/melodic/swri-console/default.nix
2019-04-06 22:15:06 -04:00

24 lines
869 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";
};
buildInputs = [ rosbag-storage rosgraph-msgs boost roscpp qt5.qtbase ];
propagatedBuildInputs = [ rosbag-storage rosgraph-msgs boost roscpp qt5.qtbase ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''A rosout GUI viewer developed at Southwest Research Insititute as an
alternative to rqt_console.'';
#license = lib.licenses.BSD;
};
}