1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00

Move everything in rosPackages to its own directory.

This commit is contained in:
Ben Wolsieffer 2020-01-17 21:21:17 -05:00
parent fe0a4494ef
commit 444edcec26
5725 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,24 @@
# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, python-qt-binding, pythonPackages, qt-gui-py-common, qwt-dependency, rosgraph, rostopic, rqt-gui, rqt-gui-py, rqt-py-common, std-msgs }:
buildRosPackage {
pname = "ros-melodic-rqt-plot";
version = "0.4.9";
src = fetchurl {
url = "https://github.com/ros-gbp/rqt_plot-release/archive/release/melodic/rqt_plot/0.4.9-0.tar.gz";
name = "0.4.9-0.tar.gz";
sha256 = "226ffb18dfbf7e879f20e2aecae2243582a4fae28e74a1f7d3b291e68f6a28fb";
};
buildType = "catkin";
propagatedBuildInputs = [ python-qt-binding pythonPackages.matplotlib pythonPackages.numpy pythonPackages.rospkg qt-gui-py-common qwt-dependency rosgraph rostopic rqt-gui rqt-gui-py rqt-py-common std-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''rqt_plot provides a GUI plugin visualizing numeric values in a 2D plot using different plotting backends.'';
license = with lib.licenses; [ bsdOriginal ];
};
}