1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-13 21:50:38 +03:00

regenerate all distros, Thu Nov 7 19:19:39 2019

This commit is contained in:
Ben Wolsieffer 2019-11-07 19:19:39 -05:00
parent b8654b68f2
commit e5bfcd971a
17 changed files with 42 additions and 34 deletions

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, }: { lib, buildRosPackage, fetchurl, python3Packages }:
buildRosPackage { buildRosPackage {
pname = "ros-crystal-osrf-pycommon"; pname = "ros-crystal-osrf-pycommon";
version = "0.1.6"; version = "0.1.6";
@ -14,6 +14,7 @@ buildRosPackage {
}; };
buildType = "ament_python"; buildType = "ament_python";
propagatedBuildInputs = [ python3Packages.mock ];
meta = { meta = {
description = ''Commonly needed Python modules, used by Python software developed at OSRF.''; description = ''Commonly needed Python modules, used by Python software developed at OSRF.'';

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, }: { lib, buildRosPackage, fetchurl, python3Packages }:
buildRosPackage { buildRosPackage {
pname = "ros-dashing-osrf-pycommon"; pname = "ros-dashing-osrf-pycommon";
version = "0.1.9-r1"; version = "0.1.9-r1";
@ -14,6 +14,7 @@ buildRosPackage {
}; };
buildType = "ament_python"; buildType = "ament_python";
propagatedBuildInputs = [ python3Packages.mock ];
meta = { meta = {
description = ''Commonly needed Python modules, used by Python software developed at OSRF.''; description = ''Commonly needed Python modules, used by Python software developed at OSRF.'';

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rosconsole, boost, catkin, curl, roslib }: { lib, buildRosPackage, fetchurl, rosconsole, boost, catkin, pythonPackages, curl, roslib }:
buildRosPackage { buildRosPackage {
pname = "ros-kinetic-resource-retriever"; pname = "ros-kinetic-resource-retriever";
version = "1.12.5-r1"; version = "1.12.5-r1";
@ -15,7 +15,7 @@ buildRosPackage {
buildType = "catkin"; buildType = "catkin";
buildInputs = [ curl roslib rosconsole boost ]; buildInputs = [ curl roslib rosconsole boost ];
propagatedBuildInputs = [ curl roslib rosconsole boost ]; propagatedBuildInputs = [ rosconsole boost pythonPackages.rospkg curl roslib ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, gtest, cmake, gmock }: { lib, buildRosPackage, fetchurl, python, gtest, pythonPackages, cmake, gmock }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-catkin"; pname = "ros-melodic-catkin";
version = "0.7.19-r1"; version = "0.7.19-r1";
@ -14,7 +14,9 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
propagatedBuildInputs = [ gtest cmake gmock ]; buildInputs = [ python pythonPackages.catkin-pkg pythonPackages.empy ];
checkInputs = [ pythonPackages.nose pythonPackages.mock ];
propagatedBuildInputs = [ python pythonPackages.nose gtest pythonPackages.catkin-pkg cmake gmock pythonPackages.empy ];
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, genmsg, catkin }: { lib, buildRosPackage, fetchurl, genmsg, catkin, pythonPackages }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-genpy"; pname = "ros-melodic-genpy";
version = "0.6.9-r1"; version = "0.6.9-r1";
@ -15,7 +15,7 @@ buildRosPackage {
buildType = "catkin"; buildType = "catkin";
buildInputs = [ genmsg ]; buildInputs = [ genmsg ];
propagatedBuildInputs = [ genmsg ]; propagatedBuildInputs = [ genmsg pythonPackages.pyyaml ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, qt5, rosbuild }: { lib, buildRosPackage, fetchurl, catkin, rosbuild, pythonPackages, qt5 }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-python-qt-binding"; pname = "ros-melodic-python-qt-binding";
version = "0.3.6-r2"; version = "0.3.6-r2";
@ -14,8 +14,8 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
buildInputs = [ rosbuild qt5.qtbase ]; buildInputs = [ pythonPackages.pyqt5 rosbuild qt5.qtbase ];
propagatedBuildInputs = [ catkin ]; propagatedBuildInputs = [ pythonPackages.pyqt5 catkin ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, python-qt-binding }: { lib, buildRosPackage, fetchurl, catkin, pythonPackages, python-qt-binding }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-qt-dotgraph"; pname = "ros-melodic-qt-dotgraph";
version = "0.3.15-r1"; version = "0.3.15-r1";
@ -14,7 +14,8 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
propagatedBuildInputs = [ python-qt-binding ]; checkInputs = [ pythonPackages.pygraphviz ];
propagatedBuildInputs = [ pythonPackages.pydot python-qt-binding ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, python-qt-binding }: { lib, buildRosPackage, fetchurl, catkin, pythonPackages, python-qt-binding }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-qt-gui-py-common"; pname = "ros-melodic-qt-gui-py-common";
version = "0.3.15-r1"; version = "0.3.15-r1";
@ -14,7 +14,7 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
propagatedBuildInputs = [ python-qt-binding ]; propagatedBuildInputs = [ pythonPackages.rospkg python-qt-binding ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, python-qt-binding, qt5, tango-icon-theme }: { lib, buildRosPackage, fetchurl, catkin, pythonPackages, qt5, python-qt-binding, tango-icon-theme }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-qt-gui"; pname = "ros-melodic-qt-gui";
version = "0.3.15-r1"; version = "0.3.15-r1";
@ -14,8 +14,8 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
buildInputs = [ qt5.qtbase ]; buildInputs = [ pythonPackages.pyqt5 qt5.qtbase ];
propagatedBuildInputs = [ python-qt-binding tango-icon-theme ]; propagatedBuildInputs = [ pythonPackages.rospkg python-qt-binding tango-icon-theme ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, rosconsole, boost, catkin, curl, roslib }: { lib, buildRosPackage, fetchurl, rosconsole, boost, catkin, pythonPackages, curl, roslib }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-resource-retriever"; pname = "ros-melodic-resource-retriever";
version = "1.12.5-r1"; version = "1.12.5-r1";
@ -15,7 +15,7 @@ buildRosPackage {
buildType = "catkin"; buildType = "catkin";
buildInputs = [ curl roslib rosconsole boost ]; buildInputs = [ curl roslib rosconsole boost ];
propagatedBuildInputs = [ curl roslib rosconsole boost ]; propagatedBuildInputs = [ rosconsole boost pythonPackages.rospkg curl roslib ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin }: { lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-rosclean"; pname = "ros-melodic-rosclean";
version = "1.14.7-r1"; version = "1.14.7-r1";
@ -14,6 +14,7 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
propagatedBuildInputs = [ pythonPackages.rospkg ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, roslib, catkin }: { lib, buildRosPackage, fetchurl, roslib, catkin, pythonPackages }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-roscreate"; pname = "ros-melodic-roscreate";
version = "1.14.7-r1"; version = "1.14.7-r1";
@ -14,7 +14,7 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
propagatedBuildInputs = [ roslib ]; propagatedBuildInputs = [ pythonPackages.rospkg roslib ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ros-environment, rospack, boost, catkin, rosmake }: { lib, buildRosPackage, fetchurl, ros-environment, rospack, boost, catkin, pythonPackages, rosmake }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-roslib"; pname = "ros-melodic-roslib";
version = "1.14.7-r1"; version = "1.14.7-r1";
@ -16,7 +16,7 @@ buildRosPackage {
buildType = "catkin"; buildType = "catkin";
buildInputs = [ rospack boost ]; buildInputs = [ rospack boost ];
checkInputs = [ rosmake ]; checkInputs = [ rosmake ];
propagatedBuildInputs = [ ros-environment rospack catkin ]; propagatedBuildInputs = [ pythonPackages.rospkg ros-environment rospack catkin ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin }: { lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-rosmake"; pname = "ros-melodic-rosmake";
version = "1.14.7-r1"; version = "1.14.7-r1";
@ -14,7 +14,7 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
propagatedBuildInputs = [ catkin ]; propagatedBuildInputs = [ pythonPackages.rospkg catkin ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ros-environment, cmake-modules, boost, gtest, catkin, pkg-config, tinyxml-2 }: { lib, buildRosPackage, fetchurl, python, ros-environment, cmake-modules, boost, gtest, catkin, pythonPackages, pkg-config, tinyxml-2 }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-rospack"; pname = "ros-melodic-rospack";
version = "2.5.4-r1"; version = "2.5.4-r1";
@ -14,8 +14,9 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
buildInputs = [ cmake-modules boost gtest pkg-config tinyxml-2 ]; buildInputs = [ python cmake-modules boost gtest pkg-config tinyxml-2 ];
propagatedBuildInputs = [ ros-environment tinyxml-2 boost pkg-config ]; checkInputs = [ pythonPackages.coverage ];
propagatedBuildInputs = [ python ros-environment boost pythonPackages.rosdep pkg-config tinyxml-2 pythonPackages.catkin-pkg ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, roslib, catkin }: { lib, buildRosPackage, fetchurl, roslib, catkin, pythonPackages }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-rosunit"; pname = "ros-melodic-rosunit";
version = "1.14.7-r1"; version = "1.14.7-r1";
@ -14,7 +14,7 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
propagatedBuildInputs = [ roslib ]; propagatedBuildInputs = [ pythonPackages.rospkg roslib ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {

View file

@ -2,7 +2,7 @@
# Copyright 2019 Open Source Robotics Foundation # Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license # Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, rospy }: { lib, buildRosPackage, fetchurl, catkin, pythonPackages, rospy }:
buildRosPackage { buildRosPackage {
pname = "ros-melodic-urdfdom-py"; pname = "ros-melodic-urdfdom-py";
version = "0.4.1-r1"; version = "0.4.1-r1";
@ -14,7 +14,8 @@ buildRosPackage {
}; };
buildType = "catkin"; buildType = "catkin";
propagatedBuildInputs = [ rospy ]; checkInputs = [ pythonPackages.mock ];
propagatedBuildInputs = [ pythonPackages.lxml pythonPackages.pyyaml rospy ];
nativeBuildInputs = [ catkin ]; nativeBuildInputs = [ catkin ];
meta = { meta = {