1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 16:40:36 +03:00

regenerate ros-melodic, Thu Apr 18 01:46:06 2019

This commit is contained in:
Ben Wolsieffer 2019-04-18 01:46:07 -04:00
parent 127e163c33
commit cea2738c0e
39 changed files with 533 additions and 56 deletions

View file

@ -0,0 +1,24 @@
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages, rostest, rospy, roslib, rosunit, rocon-std-msgs }:
buildRosPackage {
pname = "ros-melodic-rocon-python-utils";
version = "0.3.2";
src = fetchurl {
url = https://github.com/yujinrobot-release/rocon_tools-release/archive/release/melodic/rocon_python_utils/0.3.2-0.tar.gz;
sha256 = "276c59565857a8553d7b92113ae9c7567bcb2eeee5ea5f517e91066a3346704f";
};
buildInputs = [ rostest pythonPackages.catkin-pkg ];
checkInputs = [ rosunit ];
propagatedBuildInputs = [ rospy pythonPackages.rospkg pythonPackages.catkin-pkg roslib rocon-std-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Python system and ros utilities.'';
#license = lib.licenses.BSD;
};
}