mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{ stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, lib
|
|
, darwin
|
|
, glib
|
|
, gtk4
|
|
, libadwaita
|
|
, libX11
|
|
, libXtst
|
|
, pkg-config
|
|
, wrapGAppsHook4
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "lan-mouse";
|
|
version = "0.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "feschber";
|
|
repo = "lan-mouse";
|
|
rev = "v${version}";
|
|
hash = "sha256-W4TCA8umcr2hCIc50GFdvDVZaJGSNRNi7iDe8DJ5PHs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
glib # needed in both {b,nativeB}uildInptus
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk4
|
|
libadwaita
|
|
libX11
|
|
libXtst
|
|
]
|
|
++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.CoreGraphics;
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
meta = {
|
|
description = "A software KVM switch for sharing a mouse and keyboard with multiple hosts through the network";
|
|
homepage = "https://github.com/feschber/lan-mouse";
|
|
changelog = "https://github.com/feschber/lan-mouse/releases/tag/v${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "lan-mouse";
|
|
maintainers = with lib.maintainers; [ pedrohlc ];
|
|
platforms = lib.platforms.unix ++ lib.platforms.windows;
|
|
};
|
|
}
|