nix-ros-overlay/distros/noetic/phidgets-analog-inputs/default.nix
Superflore 2435baa8ac
Some checks failed
Build / build (humble, aarch64-linux) (push) Has been cancelled
Build / build (humble, x86_64-linux) (push) Has been cancelled
Build / build (jazzy, aarch64-linux) (push) Has been cancelled
Build / build (jazzy, x86_64-linux) (push) Has been cancelled
Build / build (noetic, aarch64-linux) (push) Has been cancelled
Build / build (noetic, x86_64-linux) (push) Has been cancelled
Build / build (rolling, aarch64-linux) (push) Has been cancelled
Build / build (rolling, x86_64-linux) (push) Has been cancelled
regenerate all distros, Fri May 16 13:35:43 2025
2025-05-31 15:39:42 -04:00

25 lines
857 B
Nix

# Copyright 2025 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.10-r1";
src = fetchurl {
url = "https://github.com/ros-drivers-gbp/phidgets_drivers-release/archive/release/noetic/phidgets_analog_inputs/1.0.10-1.tar.gz";
name = "1.0.10-1.tar.gz";
sha256 = "f6a7fd45332d940f30ad2f998126985f59cb4e240da57a4103143db91a5017c5";
};
buildType = "catkin";
buildInputs = [ 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 ];
};
}