nixpkgs/pkgs/applications/networking/instant-messengers/teams/default.nix

103 lines
3.1 KiB
Nix
Raw Normal View History

2019-12-11 12:38:30 +00:00
{ lib
, stdenv
, fetchurl
, autoPatchelfHook
, wrapGAppsHook
, dpkg
, atomEnv
, libuuid
, libappindicator-gtk3
2019-12-11 12:38:30 +00:00
, pulseaudio
, at-spi2-atk
, coreutils
, gawk
2021-02-01 08:05:09 +00:00
, xdg-utils
2019-12-11 12:38:30 +00:00
, systemd }:
stdenv.mkDerivation rec {
pname = "teams";
2021-06-08 20:21:01 +01:00
version = "1.4.00.13653";
2019-12-11 12:38:30 +00:00
src = fetchurl {
url = "https://packages.microsoft.com/repos/ms-teams/pool/main/t/teams/teams_${version}_amd64.deb";
2021-06-08 20:21:01 +01:00
sha256 = "1kx4j837fd344zy90nl0j3r8cdvihy6i6gf56wd5n56zngx1fhjv";
2019-12-11 12:38:30 +00:00
};
nativeBuildInputs = [ dpkg autoPatchelfHook wrapGAppsHook ];
unpackCmd = "dpkg -x $curSrc .";
buildInputs = atomEnv.packages ++ [
libuuid
at-spi2-atk
];
runtimeDependencies = [
(lib.getLib systemd)
2019-12-11 12:38:30 +00:00
pulseaudio
libappindicator-gtk3
2019-12-11 12:38:30 +00:00
];
preFixup = ''
2021-02-01 08:05:09 +00:00
gappsWrapperArgs+=(--prefix PATH : "${coreutils}/bin:${gawk}/bin:${xdg-utils}/bin")
2021-03-11 19:28:47 +00:00
gappsWrapperArgs+=(--add-flags --disable-namespace-sandbox)
gappsWrapperArgs+=(--add-flags --disable-setuid-sandbox)
2019-12-11 12:38:30 +00:00
'';
installPhase = ''
2021-03-11 19:28:47 +00:00
runHook preInstall
2019-12-11 12:38:30 +00:00
mkdir -p $out/{opt,bin}
mv share/teams $out/opt/
mv share $out/share
substituteInPlace $out/share/applications/teams.desktop \
--replace /usr/bin/ ""
2019-12-11 12:38:30 +00:00
ln -s $out/opt/teams/teams $out/bin/
2020-10-28 08:39:08 +00:00
# Work-around screen sharing bug
# https://docs.microsoft.com/en-us/answers/questions/42095/sharing-screen-not-working-anymore-bug.html
rm $out/opt/teams/resources/app.asar.unpacked/node_modules/slimcore/bin/rect-overlay
2021-03-11 19:28:47 +00:00
runHook postInstall
2019-12-11 12:38:30 +00:00
'';
2020-04-17 17:23:31 +01:00
dontAutoPatchelf = true;
# Includes runtimeDependencies in the RPATH of the included Node modules
# so that dynamic loading works. We cannot use directly runtimeDependencies
# here, since the libraries from runtimeDependencies are not propagated
2020-04-17 17:23:31 +01:00
# to the dynamically loadable node modules because of a condition in
# autoPatchElfHook since *.node modules have Type: DYN (Shared object file)
2020-04-17 17:23:31 +01:00
# instead of EXEC or INTERP it expects.
# Fixes: https://github.com/NixOS/nixpkgs/issues/85449
postFixup = ''
autoPatchelf "$out"
runtime_rpath="${lib.makeLibraryPath runtimeDependencies}"
for mod in $(find "$out/opt/teams" -name '*.node'); do
mod_rpath="$(patchelf --print-rpath "$mod")"
echo "Adding runtime dependencies to RPATH of Node module $mod"
patchelf --set-rpath "$runtime_rpath:$mod_rpath" "$mod"
done;
# fix for https://docs.microsoft.com/en-us/answers/questions/298724/open-teams-meeting-link-on-linux-doens39t-work.html?childToView=309406#comment-309406
# while we create the wrapper ourselves, gappsWrapperArgs leads to the same issue
# another option would be to introduce gappsWrapperAppendedArgs, to allow control of positioning
substituteInPlace "$out/bin/teams" --replace '.teams-wrapped" --disable-namespace-sandbox --disable-setuid-sandbox "$@"' '.teams-wrapped" "$@" --disable-namespace-sandbox --disable-setuid-sandbox'
2020-04-17 17:23:31 +01:00
'';
meta = with lib; {
2019-12-11 12:38:30 +00:00
description = "Microsoft Teams";
homepage = "https://teams.microsoft.com";
downloadPage = "https://teams.microsoft.com/downloads";
license = licenses.unfree;
maintainers = [ maintainers.liff ];
platforms = [ "x86_64-linux" ];
};
}