mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-12 18:54:50 +03:00

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
25 lines
857 B
Nix
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 ];
|
|
};
|
|
}
|