1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-12 05:16:30 +03:00
nix-ros-overlay/distros/noetic/phidgets-analog-outputs/default.nix

26 lines
889 B
Nix
Raw Normal View History

# Copyright 2025 Open Source Robotics Foundation
# 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";
version = "1.0.10-r1";
src = fetchurl {
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";
};
buildType = "catkin";
buildInputs = [ catkin ];
propagatedBuildInputs = [ nodelet phidgets-api phidgets-msgs roscpp roslaunch std-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = "Driver for the Phidgets Analog Output devices";
license = with lib.licenses; [ bsdOriginal ];
};
}