1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-19 08:31:07 +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,22 @@
# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
buildRosPackage {
pname = "ros-melodic-rocon-python-redis";
version = "0.3.2";
src = fetchurl {
url = https://github.com/yujinrobot-release/rocon_tools-release/archive/release/melodic/rocon_python_redis/0.3.2-0.tar.gz;
sha256 = "1a4191ef365c4c05d0bc6cc96bf5754a4f6a0b787dedb55e80676cbc03aa71ac";
};
buildInputs = [ pythonPackages.catkin-pkg ];
nativeBuildInputs = [ catkin ];
meta = {
description = ''Locally patched version of the python redis client (https://github.com/andymccurdy/redis-py).'';
#license = lib.licenses.BSD;
};
}