2021-10-08 13:26:21 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2021-10-08 13:26:21 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, nodelet, phidgets-api, phidgets-msgs, roscpp, roslaunch, std-msgs }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-phidgets-analog-outputs";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "1.0.10-r1";
|
2021-10-08 13:26:21 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-05-16 13:35:43 +00:00
|
|
|
url = "https://github.com/ros-drivers-gbp/phidgets_drivers-release/archive/release/noetic/phidgets_analog_outputs/1.0.10-1.tar.gz";
|
|
|
|
name = "1.0.10-1.tar.gz";
|
|
|
|
sha256 = "49b77beeefaf940e86d012a38a2279989ce025190c68c3100b0b4ac8c7e19605";
|
2021-10-08 13:26:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2021-10-08 13:26:21 +00:00
|
|
|
propagatedBuildInputs = [ nodelet phidgets-api phidgets-msgs roscpp roslaunch std-msgs ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Driver for the Phidgets Analog Output devices";
|
2021-10-08 13:26:21 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|