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