mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
31 lines
1.2 KiB
Nix
31 lines
1.2 KiB
Nix
|
|
# Copyright 2025 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-auto, ament-lint-common, diagnostic-msgs, diagnostic-updater, rclcpp, sensor-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-jazzy-joy-linux";
|
|
version = "3.3.0-r3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/joystick_drivers-release/archive/release/jazzy/joy_linux/3.3.0-3.tar.gz";
|
|
name = "3.3.0-3.tar.gz";
|
|
sha256 = "afa5711154511d93dd319ae7eb8f50f3c3b8015a868aea08b549971b6028137e";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake ];
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
|
propagatedBuildInputs = [ diagnostic-msgs diagnostic-updater rclcpp sensor-msgs ];
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
meta = {
|
|
description = "ROS2 driver for a generic Linux joystick.
|
|
Will contain a MacOS and Windows version later.
|
|
The joy package contains joy_node, a node that interfaces a
|
|
generic Linux joystick to ROS2. This node publishes a "Joy"
|
|
message, which contains the current state of each one of the
|
|
joystick's buttons and axes.";
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|