mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-19 08:31:07 +03:00
24 lines
799 B
Nix
24 lines
799 B
Nix
|
|
# Copyright 2021 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";
|
|
name = "0.3.2-0.tar.gz";
|
|
sha256 = "1a4191ef365c4c05d0bc6cc96bf5754a4f6a0b787dedb55e80676cbc03aa71ac";
|
|
};
|
|
|
|
buildType = "catkin";
|
|
buildInputs = [ pythonPackages.catkin-pkg ];
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
meta = {
|
|
description = ''Locally patched version of the python redis client (https://github.com/andymccurdy/redis-py).'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|