2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, phidgets-api, libphidget21, sensor-msgs, catkin, message-generation, message-runtime, std-msgs, roscpp }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-melodic-phidgets-high-speed-encoder";
|
2019-05-14 01:21:09 -04:00
|
|
|
version = "0.7.8-r1";
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-05-14 01:21:09 -04:00
|
|
|
url = https://github.com/ros-drivers-gbp/phidgets_drivers-release/archive/release/melodic/phidgets_high_speed_encoder/0.7.8-1.tar.gz;
|
|
|
|
sha256 = "1c2d32eba8d647e071782eb73fa282b16d7b8827dc846958820cacf16ac8a381";
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
|
2019-05-05 02:02:52 -04:00
|
|
|
buildInputs = [ phidgets-api libphidget21 sensor-msgs message-generation std-msgs roscpp ];
|
|
|
|
propagatedBuildInputs = [ phidgets-api libphidget21 sensor-msgs message-runtime std-msgs roscpp ];
|
2019-04-06 22:15:06 -04:00
|
|
|
nativeBuildInputs = [ catkin ];
|
2019-03-21 00:14:59 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Driver for the Phidgets high speed encoder devices'';
|
2019-05-05 02:02:52 -04:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
2019-03-21 00:14:59 -04:00
|
|
|
};
|
|
|
|
}
|