mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-20 22:28:39 +03:00
22 lines
730 B
Nix
22 lines
730 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, pythonPackages }:
|
|
buildRosPackage {
|
|
pname = "ros-kinetic-rocon-python-redis";
|
|
version = "0.3.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = https://github.com/yujinrobot-release/rocon_tools-release/archive/release/kinetic/rocon_python_redis/0.3.2-1.tar.gz;
|
|
sha256 = "e5c54406e2e37a79b3c01ff7d897109114b846d9d2f9f0e761f5e43c637d7c25";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|