1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-09 03:44:40 +03:00
nix-ros-overlay/distros/noetic/phidgets-analog-inputs/default.nix

25 lines
828 B
Nix
Raw Normal View History

# Copyright 2022 Open Source Robotics Foundation
# 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";
version = "1.0.5-r1";
src = fetchurl {
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";
};
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 ];
};
}