1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/distros/noetic/phidgets-msgs/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
827 B
Nix

# Copyright 2025 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, catkin, message-generation, message-runtime, std-msgs }:
buildRosPackage {
pname = "ros-noetic-phidgets-msgs";
version = "1.0.10-r1";
src = fetchurl {
url = "https://github.com/ros-drivers-gbp/phidgets_drivers-release/archive/release/noetic/phidgets_msgs/1.0.10-1.tar.gz";
name = "1.0.10-1.tar.gz";
sha256 = "047b181a4e38012de7cad85b56c41245e228a55cbed66487a819887a1b084143";
};
buildType = "catkin";
buildInputs = [ catkin message-generation ];
propagatedBuildInputs = [ message-runtime std-msgs ];
nativeBuildInputs = [ catkin ];
meta = {
description = "Custom ROS messages for Phidgets drivers";
license = with lib.licenses; [ bsdOriginal ];
};
}