mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
8f1e764551
* skhd: add meta.mainProgram * yabai: add meta.mainProgram * kitty: add meta.mainProgram * alacritty: add meta.mainProgram * thunar: add meta.mainProgram * looking-glass-client: add meta.mainProgram * thunderbird: add meta.mainProgram * ckb-next: add meta.mainProgram * virt-manager: add meta.mainProgram * gh: add meta.mainProgram
103 lines
2.6 KiB
Nix
103 lines
2.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, makeDesktopItem
|
|
, pkg-config
|
|
, cmake
|
|
, freefont_ttf
|
|
, spice-protocol
|
|
, nettle
|
|
, libbfd
|
|
, fontconfig
|
|
, libffi
|
|
, expat
|
|
, libGL
|
|
|
|
, libX11
|
|
, libxkbcommon
|
|
, libXext
|
|
, libXrandr
|
|
, libXi
|
|
, libXScrnSaver
|
|
, libXinerama
|
|
, libXcursor
|
|
, libXpresent
|
|
|
|
, wayland
|
|
, wayland-protocols
|
|
|
|
, pipewire
|
|
, pulseaudio
|
|
, libsamplerate
|
|
|
|
, xorgSupport ? true
|
|
, waylandSupport ? true
|
|
, pipewireSupport ? true
|
|
, pulseSupport ? true
|
|
}:
|
|
|
|
let
|
|
desktopItem = makeDesktopItem {
|
|
name = "looking-glass-client";
|
|
desktopName = "Looking Glass Client";
|
|
type = "Application";
|
|
exec = "looking-glass-client";
|
|
icon = "lg-logo";
|
|
terminal = true;
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "looking-glass-client";
|
|
version = "B6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gnif";
|
|
repo = "LookingGlass";
|
|
rev = version;
|
|
sha256 = "sha256-6vYbNmNJBCoU23nVculac24tHqH7F4AZVftIjL93WJU=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
buildInputs = [ libGL libX11 freefont_ttf spice-protocol expat libbfd nettle fontconfig libffi ]
|
|
++ lib.optionals xorgSupport [ libxkbcommon libXi libXScrnSaver libXinerama libXcursor libXpresent libXext libXrandr ]
|
|
++ lib.optionals waylandSupport [ libxkbcommon wayland wayland-protocols ]
|
|
++ lib.optionals pipewireSupport [ pipewire libsamplerate ]
|
|
++ lib.optionals pulseSupport [ pulseaudio libsamplerate ];
|
|
|
|
cmakeFlags = [ "-DOPTIMIZE_FOR_NATIVE=OFF" ]
|
|
++ lib.optional (!xorgSupport) "-DENABLE_X11=no"
|
|
++ lib.optional (!waylandSupport) "-DENABLE_WAYLAND=no"
|
|
++ lib.optional (!pulseSupport) "-DENABLE_PULSEAUDIO=no"
|
|
++ lib.optional (!pipewireSupport) "-DENABLE_PIPEWIRE=no";
|
|
|
|
|
|
postUnpack = ''
|
|
echo ${src.rev} > source/VERSION
|
|
export sourceRoot="source/client"
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/pixmaps
|
|
ln -s ${desktopItem}/share/applications $out/share/
|
|
cp $src/resources/lg-logo.png $out/share/pixmaps
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A KVM Frame Relay (KVMFR) implementation";
|
|
longDescription = ''
|
|
Looking Glass is an open source application that allows the use of a KVM
|
|
(Kernel-based Virtual Machine) configured for VGA PCI Pass-through
|
|
without an attached physical monitor, keyboard or mouse. This is the final
|
|
step required to move away from dual booting with other operating systems
|
|
for legacy programs that require high performance graphics.
|
|
'';
|
|
homepage = "https://looking-glass.io/";
|
|
license = licenses.gpl2Plus;
|
|
mainProgram = "looking-glass-client";
|
|
maintainers = with maintainers; [ alexbakker babbaj j-brn ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|