This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new b63baa9fae gnu: Add input-leap.
b63baa9fae is described below
commit b63baa9faefb9318d59fdafb3d96cff734869abd
Author: Thiago Negri <[email protected]>
AuthorDate: Sun Jul 12 02:07:48 2026 -0300
gnu: Add input-leap.
* gnu/packages/electronics.scm (input-leap): New variable.
Merges: https://codeberg.org/guix/guix/pulls/9881
Reviewed-by: bdunahu <[email protected]>
Signed-off-by: Nguyễn Gia Phong <[email protected]>
---
gnu/packages/electronics.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 7d44b6c5d6..ce75a09a09 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -40,6 +40,7 @@
;;; Copyright © 2022 Petr Hodina <[email protected]>
;;; Copyright © 2025 Thomas Guillermo Albers Raviola <[email protected]>
;;; Copyright © 2019 Vagrant Cascadian <[email protected]>
+;;; Copyright © 2026 Thiago Negri <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -91,6 +92,7 @@
#:use-module (gnu packages cpp)
#:use-module (gnu packages curl)
#:use-module (gnu packages databases)
+ #:use-module (gnu packages dns)
#:use-module (gnu packages documentation)
#:use-module (gnu packages elf)
#:use-module (gnu packages embedded)
@@ -928,6 +930,46 @@ package supporting an integrated end-to-end workflow for
PCB design, including
from parts management and schematic entry to gerber export.")
(license license:gpl3+)))
+(define-public input-leap
+ (package
+ (name "input-leap")
+ (version "3.0.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/input-leap/input-leap")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0ngvq1ah6w644qq7v5vg4x7r4sh0s41fyds0g0jkjgycv4las0k4"))))
+ (build-system qt-build-system)
+ (arguments
+ (list
+ #:qtbase qtbase
+ #:configure-flags
+ #~(list "-DINPUTLEAP_USE_EXTERNAL_GTEST=True")))
+ (native-inputs (list googletest pkg-config qttools))
+ (inputs (list avahi
+ libice
+ libsm
+ libxi
+ libxinerama
+ libxrandr
+ libxtst
+ openssl))
+ (home-page "https://github.com/input-leap/input-leap")
+ (synopsis "Mimics a @acronym{KVM, Keyboard Video and Mouse} switch")
+ (description
+ "Input Leap is software that mimics the functionality of a KVM switch,
+which historically would allow you to use a single keyboard and mouse to
control
+multiple computers by physically turning a dial on the box to switch the
machine
+you're controlling at any given moment. Input Leap does this in software,
+allowing you to tell it which machine to control by moving your mouse to the
+edge of the screen, or by using a keypress to switch focus to a different
+system.")
+ (license license:gpl2)))
+
(define-public iverilog
(package
(name "iverilog")