2021-02-23 20:21:12 +01:00
|
|
|
{ stdenv, lib
|
|
|
|
, makeWrapper, dpkg, fetchurl, autoPatchelfHook
|
2021-03-14 17:11:48 +01:00
|
|
|
, curl, libkrb5, lttng-ust, libpulseaudio, gtk3, openssl_1_1, icu, webkitgtk, librsvg, gdk-pixbuf, libsoup, glib-networking
|
2021-02-23 20:21:12 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "aws-workspaces";
|
2021-06-26 18:52:06 +02:00
|
|
|
version = "3.1.8.1198";
|
2021-02-23 20:21:12 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
# ref https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/Packages
|
|
|
|
urls = [
|
|
|
|
"https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/workspacesclient_${version}_amd64.deb"
|
2021-06-26 18:52:06 +02:00
|
|
|
"https://web.archive.org/web/20210626165043/https://d3nt0h4h6pmmc4.cloudfront.net/ubuntu/dists/bionic/main/binary-amd64/workspacesclient_${version}_amd64.deb"
|
2021-02-23 20:21:12 +01:00
|
|
|
];
|
2021-06-26 18:52:06 +02:00
|
|
|
sha256 = "e784bc4401c2ffaf19f3cc42cb6c6f229c73adba36df49093a1d8cd30c86aaf0";
|
2021-02-23 20:21:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoPatchelfHook
|
|
|
|
makeWrapper
|
|
|
|
];
|
|
|
|
|
|
|
|
# Crashes at startup when stripping:
|
|
|
|
# "Failed to create CoreCLR, HRESULT: 0x80004005"
|
|
|
|
dontStrip = true;
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
stdenv.cc.cc.lib
|
2021-03-14 17:11:48 +01:00
|
|
|
libkrb5
|
2021-02-23 20:21:12 +01:00
|
|
|
curl
|
|
|
|
lttng-ust
|
|
|
|
libpulseaudio
|
|
|
|
gtk3
|
|
|
|
openssl_1_1.out
|
|
|
|
icu
|
|
|
|
webkitgtk
|
|
|
|
librsvg
|
|
|
|
gdk-pixbuf
|
|
|
|
libsoup
|
|
|
|
glib-networking
|
|
|
|
];
|
|
|
|
|
|
|
|
unpackPhase = ''
|
|
|
|
${dpkg}/bin/dpkg -x $src $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
mv $out/opt/workspacesclient/* $out/bin
|
|
|
|
|
|
|
|
wrapProgram $out/bin/workspacesclient \
|
|
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath buildInputs}" \
|
|
|
|
--set GDK_PIXBUF_MODULE_FILE "${librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" \
|
|
|
|
--set GIO_EXTRA_MODULES "${glib-networking.out}/lib/gio/modules"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Client for Amazon WorkSpaces, a managed, secure Desktop-as-a-Service (DaaS) solution";
|
|
|
|
homepage = "https://clients.amazonworkspaces.com";
|
|
|
|
license = licenses.unfree;
|
|
|
|
platforms = [ "x86_64-linux" ]; # TODO Mac support
|
|
|
|
maintainers = [ maintainers.mausch ];
|
|
|
|
};
|
|
|
|
}
|