1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-16 07:00:56 +03:00
nix-ros-overlay/distros/rolling/keyboard-handler/default.nix

26 lines
838 B
Nix
Raw Normal View History

# Copyright 2024 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gmock, ament-lint-auto, ament-lint-common }:
buildRosPackage {
pname = "ros-rolling-keyboard-handler";
version = "0.2.0-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/keyboard_handler-release/archive/release/rolling/keyboard_handler/0.2.0-1.tar.gz";
name = "0.2.0-1.tar.gz";
sha256 = "476703028d0bef12ad06e7ca3fe4a43a0adff3a6259bdfed8b3c16bceeb575aa";
};
buildType = "ament_cmake";
buildInputs = [ ament-cmake ];
checkInputs = [ ament-cmake-gmock ament-lint-auto ament-lint-common ];
nativeBuildInputs = [ ament-cmake ];
meta = {
description = ''Handler for input from keyboard'';
license = with lib.licenses; [ asl20 ];
};
}