2020-06-05 12:54:26 +00:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2020-06-05 12:54:26 +00:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, catkin, libphidget22 }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-noetic-phidgets-api";
|
2025-05-16 13:35:43 +00:00
|
|
|
version = "1.0.10-r1";
|
2020-06-05 12:54:26 +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_api/1.0.10-1.tar.gz";
|
|
|
|
name = "1.0.10-1.tar.gz";
|
|
|
|
sha256 = "3fdafa9a1ec6f1a98e13342ba9dc12c5ac9537f006f7a6f50f012494f0c82e0a";
|
2020-06-05 12:54:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "catkin";
|
2022-11-04 19:29:56 -04:00
|
|
|
buildInputs = [ catkin ];
|
2020-06-05 12:54:26 +00:00
|
|
|
propagatedBuildInputs = [ libphidget22 ];
|
|
|
|
nativeBuildInputs = [ catkin ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "A C++ Wrapper for the Phidgets C API";
|
2020-06-05 12:54:26 +00:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|