mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-15 03:58:39 +03:00
23 lines
782 B
Nix
23 lines
782 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, sensor-msgs, catkin, pythonPackages, nav-msgs, rospy, tf, geometry-msgs }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-ros-numpy";
|
||
|
version = "0.0.2";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/eric-wieser/ros_numpy-release/archive/release/kinetic/ros_numpy/0.0.2-0.tar.gz;
|
||
|
sha256 = "90de93f399a745aafbaba926fe30d11de3aa89a5262b536353d84c6a7518e492";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ pythonPackages.numpy nav-msgs rospy sensor-msgs tf geometry-msgs ];
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''A collection of conversion function for extracting numpy arrays from messages'';
|
||
|
#license = lib.licenses.MIT;
|
||
|
};
|
||
|
}
|