2020-06-05 12:54:26 +00:00
|
|
|
|
2022-01-07 13:12:33 +00:00
|
|
|
# Copyright 2022 Open Source Robotics Foundation
|
2020-06-05 12:54:26 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, nodelet, phidgets-api, roscpp, roslaunch, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-phidgets-analog-inputs";
|
2022-02-25 13:30:51 +00:00
|
|
|
version = "1.0.5-r1";
|
2020-06-05 12:54:26 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-02-25 13:30:51 +00:00
|
|
|
url = "https://github.com/ros-drivers-gbp/phidgets_drivers-release/archive/release/noetic/phidgets_analog_inputs/1.0.5-1.tar.gz";
|
|
|
|
name = "1.0.5-1.tar.gz";
|
|
|
|
sha256 = "f570c059509fe693320108951481a65bee8ff1b614ab7923426ec6424c543595";
|
2020-06-05 12:54:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
|
|
|
propagatedBuildInputs = [ nodelet phidgets-api roscpp roslaunch std-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Driver for the Phidgets Analog Input devices'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|