mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
vmware-horizon-client: duplicate upstream package
This commit is contained in:
parent
ab09e32ae0
commit
12318bfcfe
2 changed files with 156 additions and 0 deletions
|
@ -17,6 +17,7 @@ rec
|
||||||
security-wordlists = pkg ./wordlists.nix { };
|
security-wordlists = pkg ./wordlists.nix { };
|
||||||
SpaceCadetPinball = pkg ./SpaceCadetPinball { };
|
SpaceCadetPinball = pkg ./SpaceCadetPinball { };
|
||||||
stretchy-spaces = pkg ./stretchy-spaces { };
|
stretchy-spaces = pkg ./stretchy-spaces { };
|
||||||
|
vmware-horizon-client = pkg ./vmware-horizon-client.nix { };
|
||||||
webshells = pkg ./webshells { };
|
webshells = pkg ./webshells { };
|
||||||
weevely = pkg ./weevely { };
|
weevely = pkg ./weevely { };
|
||||||
}
|
}
|
||||||
|
|
155
pkgs/vmware-horizon-client.nix
Normal file
155
pkgs/vmware-horizon-client.nix
Normal file
|
@ -0,0 +1,155 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, at-spi2-atk
|
||||||
|
, atk
|
||||||
|
, buildFHSUserEnv
|
||||||
|
, cairo
|
||||||
|
, dbus
|
||||||
|
, fetchurl
|
||||||
|
, fontconfig
|
||||||
|
, freetype
|
||||||
|
, gdk-pixbuf
|
||||||
|
, glib
|
||||||
|
, gsettings-desktop-schemas
|
||||||
|
, gtk2
|
||||||
|
, gtk3-x11
|
||||||
|
, harfbuzz
|
||||||
|
, liberation_ttf
|
||||||
|
, libjpeg
|
||||||
|
, libtiff
|
||||||
|
, libudev0-shim
|
||||||
|
, libuuid
|
||||||
|
, libX11
|
||||||
|
, libXcursor
|
||||||
|
, libXext
|
||||||
|
, libXi
|
||||||
|
, libXinerama
|
||||||
|
, libxkbfile
|
||||||
|
, libxml2
|
||||||
|
, libXrandr
|
||||||
|
, libXrender
|
||||||
|
, libXScrnSaver
|
||||||
|
, libxslt
|
||||||
|
, libXtst
|
||||||
|
, makeDesktopItem
|
||||||
|
, makeWrapper
|
||||||
|
, pango
|
||||||
|
, pcsclite
|
||||||
|
, pixman
|
||||||
|
, zlib
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
version = "2106.1";
|
||||||
|
|
||||||
|
sysArch =
|
||||||
|
if stdenv.hostPlatform.system == "x86_64-linux" then "x64"
|
||||||
|
else throw "Unsupported system: ${stdenv.hostPlatform.system}";
|
||||||
|
# The downloaded archive also contains ARM binaries, but these have not been tested.
|
||||||
|
|
||||||
|
vmwareHorizonClientFiles = stdenv.mkDerivation {
|
||||||
|
name = "vmwareHorizonClientFiles";
|
||||||
|
inherit version;
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://download3.vmware.com/software/view/viewclients/CART22FQ2/VMware-Horizon-Client-Linux-2106.1-8.3.1-18435609.tar.gz";
|
||||||
|
sha256 = "b42ddb9d7e9c8d0f8b86b69344fcfca45251c5a5f1e06a18a3334d5a04e18c39";
|
||||||
|
};
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
installPhase = ''
|
||||||
|
mkdir ext $out
|
||||||
|
find ${sysArch} -type f -print0 | xargs -0n1 tar -Cext --strip-components=1 -xf
|
||||||
|
mv ext/bin ext/lib ext/share "$out"/
|
||||||
|
|
||||||
|
# Horizon includes a copy of libstdc++ which is loaded via $LD_LIBRARY_PATH
|
||||||
|
# when it cannot detect a new enough version already present on the system.
|
||||||
|
# The checks are distribution-specific and do not function correctly on NixOS.
|
||||||
|
# Deleting the bundled library is the simplest way to force it to use our version.
|
||||||
|
rm "$out/lib/vmware/gcc/libstdc++.so.6"
|
||||||
|
|
||||||
|
# This libjpeg library interferes with Chromium, so we will be using ours instead.
|
||||||
|
rm $out/lib/vmware/libjpeg.*
|
||||||
|
|
||||||
|
# This library causes the program to core-dump occasionally. Use ours instead.
|
||||||
|
rm $out/lib/vmware/view/crtbora/libcairo.*
|
||||||
|
|
||||||
|
# Force the default GTK theme (Adwaita) because Horizon is prone to
|
||||||
|
# UI usability issues when using non-default themes, such as Adwaita-dark.
|
||||||
|
makeWrapper "$out/bin/vmware-view" "$out/bin/vmware-view_wrapper" \
|
||||||
|
--set GTK_THEME Adwaita \
|
||||||
|
--suffix XDG_DATA_DIRS : "${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}" \
|
||||||
|
--suffix LD_LIBRARY_PATH : "$out/lib/vmware/view/crtbora:$out/lib/vmware"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
vmwareFHSUserEnv = buildFHSUserEnv {
|
||||||
|
name = "vmware-view";
|
||||||
|
|
||||||
|
runScript = "${vmwareHorizonClientFiles}/bin/vmware-view_wrapper";
|
||||||
|
|
||||||
|
targetPkgs = pkgs: [
|
||||||
|
at-spi2-atk
|
||||||
|
atk
|
||||||
|
cairo
|
||||||
|
dbus
|
||||||
|
fontconfig
|
||||||
|
freetype
|
||||||
|
gdk-pixbuf
|
||||||
|
glib
|
||||||
|
gtk2
|
||||||
|
gtk3-x11
|
||||||
|
harfbuzz
|
||||||
|
liberation_ttf
|
||||||
|
libjpeg
|
||||||
|
libtiff
|
||||||
|
libudev0-shim
|
||||||
|
libuuid
|
||||||
|
libX11
|
||||||
|
libXcursor
|
||||||
|
libXext
|
||||||
|
libXi
|
||||||
|
libXinerama
|
||||||
|
libxkbfile
|
||||||
|
libxml2
|
||||||
|
libXrandr
|
||||||
|
libXrender
|
||||||
|
libXScrnSaver
|
||||||
|
libXtst
|
||||||
|
pango
|
||||||
|
pcsclite
|
||||||
|
pixman
|
||||||
|
vmwareHorizonClientFiles
|
||||||
|
zlib
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
desktopItem = makeDesktopItem {
|
||||||
|
name = "vmware-view";
|
||||||
|
desktopName = "VMware Horizon Client";
|
||||||
|
icon = "${vmwareHorizonClientFiles}/share/icons/vmware-view.png";
|
||||||
|
exec = "${vmwareFHSUserEnv}/bin/vmware-view %u";
|
||||||
|
mimeType = "x-scheme-handler/vmware-view";
|
||||||
|
};
|
||||||
|
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "vmware-view";
|
||||||
|
|
||||||
|
dontUnpack = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin $out/share/applications
|
||||||
|
cp "${desktopItem}"/share/applications/* $out/share/applications/
|
||||||
|
ln -s "${vmwareFHSUserEnv}/bin/vmware-view" "$out/bin/"
|
||||||
|
'';
|
||||||
|
|
||||||
|
unwrapped = vmwareHorizonClientFiles;
|
||||||
|
|
||||||
|
passthru.updateScript = ./update.sh;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Allows you to connect to your VMware Horizon virtual desktop";
|
||||||
|
homepage = "https://www.vmware.com/go/viewclients";
|
||||||
|
license = licenses.unfree;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ buckley310 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue