input-leap: init at unstable-2023-05-24
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
This commit is contained in:
parent
93ae7729be
commit
c36301bcc0
2 changed files with 81 additions and 0 deletions
77
pkgs/applications/misc/input-leap/default.nix
Normal file
77
pkgs/applications/misc/input-leap/default.nix
Normal file
|
@ -0,0 +1,77 @@
|
|||
{ lib
|
||||
, mkDerivation
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
|
||||
, withLibei ? true
|
||||
|
||||
, avahi
|
||||
, curl
|
||||
, libICE
|
||||
, libSM
|
||||
, libX11
|
||||
, libXdmcp
|
||||
, libXext
|
||||
, libXinerama
|
||||
, libXrandr
|
||||
, libXtst
|
||||
, libei
|
||||
, libportal
|
||||
, openssl
|
||||
, pkg-config
|
||||
, qtbase
|
||||
, qttools
|
||||
, wrapGAppsHook
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "input-leap";
|
||||
version = "unstable-2023-05-24";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "input-leap";
|
||||
repo = "input-leap";
|
||||
rev = "5e2f37bf9ec17627ae33558d99f90b7608ace422";
|
||||
hash = "sha256-55RqdRu/Hi2OTiLjAFJ6Gdgg9iO5NIIJCsOkUQjR9hk=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake wrapGAppsHook qttools ];
|
||||
buildInputs = [
|
||||
curl qtbase avahi
|
||||
libX11 libXext libXtst libXinerama libXrandr libXdmcp libICE libSM
|
||||
] ++ lib.optionals withLibei [ libei libportal ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DINPUTLEAP_REVISION=${builtins.substring 0 8 src.rev}"
|
||||
] ++ lib.optional withLibei "-DINPUTLEAP_BUILD_LIBEI=ON";
|
||||
|
||||
dontWrapGApps = true;
|
||||
preFixup = ''
|
||||
qtWrapperArgs+=(
|
||||
"''${gappsWrapperArgs[@]}"
|
||||
--prefix PATH : "${lib.makeBinPath [ openssl ]}"
|
||||
)
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
substituteInPlace $out/share/applications/input-leap.desktop \
|
||||
--replace "Exec=input-leap" "Exec=$out/bin/input-leap"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Open-source KVM software";
|
||||
longDescription = ''
|
||||
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.
|
||||
'';
|
||||
homepage = "https://github.com/input-leap/input-leap";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = with lib.maintainers; [ kovirobi phryneas twey shymega ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -30777,6 +30777,10 @@ with pkgs;
|
|||
|
||||
icesl = callPackage ../applications/misc/icesl { };
|
||||
|
||||
input-leap = libsForQt5.callPackage ../applications/misc/input-leap {
|
||||
avahi = avahi.override { withLibdnssdCompat = true; };
|
||||
};
|
||||
|
||||
karlender = callPackage ../applications/office/karlender { };
|
||||
|
||||
keepassxc = libsForQt5.callPackage ../applications/misc/keepassxc {
|
||||
|
|
Loading…
Reference in a new issue