Merge pull request #251137 from QJoly/teams-for-linux-1.3.5

team-for-linux: 1.3.2 -> 1.3.8

authored by

Lily Foster and committed by
GitHub
dada1c59 fc9273ff

+9 -3
+9 -3
pkgs/applications/networking/instant-messengers/teams-for-linux/default.nix
··· 13 , pipewire 14 , alsa-utils 15 , which 16 }: 17 18 stdenv.mkDerivation (finalAttrs: { 19 pname = "teams-for-linux"; 20 - version = "1.3.2"; 21 22 src = fetchFromGitHub { 23 owner = "IsmaelMartinez"; 24 repo = "teams-for-linux"; 25 rev = "v${finalAttrs.version}"; 26 - hash = "sha256-2WoTbkRGH9l6cQrveyxGvO/Dy+0NV4UTDaooYn8k06s="; 27 }; 28 29 offlineCache = fetchYarnDeps { ··· 91 })]; 92 93 passthru.updateScript = ./update.sh; 94 95 meta = { 96 description = "Unofficial Microsoft Teams client for Linux"; 97 homepage = "https://github.com/IsmaelMartinez/teams-for-linux"; 98 license = lib.licenses.gpl3Only; 99 - maintainers = with lib.maintainers; [ muscaln lilyinstarlight ]; 100 platforms = lib.platforms.unix; 101 broken = stdenv.isDarwin; 102 };
··· 13 , pipewire 14 , alsa-utils 15 , which 16 + , testers 17 + , teams-for-linux 18 }: 19 20 stdenv.mkDerivation (finalAttrs: { 21 pname = "teams-for-linux"; 22 + version = "1.3.8"; 23 24 src = fetchFromGitHub { 25 owner = "IsmaelMartinez"; 26 repo = "teams-for-linux"; 27 rev = "v${finalAttrs.version}"; 28 + hash = "sha256-G0UBzSXoZPLHBsM0nslPLNBZs0sUAQYJ403nPV+3Qu4="; 29 }; 30 31 offlineCache = fetchYarnDeps { ··· 93 })]; 94 95 passthru.updateScript = ./update.sh; 96 + passthru.tests.version = testers.testVersion rec { 97 + package = teams-for-linux; 98 + command = "HOME=$TMPDIR ${package.meta.mainProgram or package.pname} --version"; 99 + }; 100 101 meta = { 102 description = "Unofficial Microsoft Teams client for Linux"; 103 homepage = "https://github.com/IsmaelMartinez/teams-for-linux"; 104 license = lib.licenses.gpl3Only; 105 + maintainers = with lib.maintainers; [ muscaln lilyinstarlight qjoly ]; 106 platforms = lib.platforms.unix; 107 broken = stdenv.isDarwin; 108 };