mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 22:20:34 +03:00
23 lines
675 B
Nix
23 lines
675 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, naoqi-sensors-py, catkin, rospy }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-pepper-sensors-py";
|
||
|
version = "0.1.10";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/ros-naoqi/pepper_robot-release/archive/release/kinetic/pepper_sensors_py/0.1.10-0.tar.gz;
|
||
|
sha256 = "97f2eeb21f132febd2c667003232292fab54ca2877ea246fba7ee7dd384b11fc";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ naoqi-sensors-py rospy ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The pepper_sensors package'';
|
||
|
#license = lib.licenses.Apache 2.0;
|
||
|
};
|
||
|
}
|