teams-for-linux: 1.1.6 -> 1.1.8
This commit is contained in:
parent
6f93607826
commit
9888b3e981
1 changed files with 16 additions and 16 deletions
|
@ -15,20 +15,20 @@
|
||||||
, which
|
, which
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "teams-for-linux";
|
pname = "teams-for-linux";
|
||||||
version = "1.1.6";
|
version = "1.1.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "IsmaelMartinez";
|
owner = "IsmaelMartinez";
|
||||||
repo = pname;
|
repo = "teams-for-linux";
|
||||||
rev = "v${version}";
|
rev = "v${finalAttrs.version}";
|
||||||
sha256 = "sha256-UDCMQqDN7MZ5tHZJts00IryMpRr07TPSGwxFdcq0fdI=";
|
hash = "sha256-YbO5bDHbquuiokIyepqE8nM+IZDW+x6rzJqnzeqoS8Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
offlineCache = fetchYarnDeps {
|
offlineCache = fetchYarnDeps {
|
||||||
yarnLock = "${src}/yarn.lock";
|
yarnLock = "${finalAttrs.src}/yarn.lock";
|
||||||
sha256 = "sha256-Zk3TAoGAPeki/ogfNl/XqeBBn6N/kbNcktRHEyqPOAA=";
|
hash = "sha256-Zk3TAoGAPeki/ogfNl/XqeBBn6N/kbNcktRHEyqPOAA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -87,22 +87,22 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
desktopItems = [(makeDesktopItem {
|
desktopItems = [(makeDesktopItem {
|
||||||
name = pname;
|
name = finalAttrs.pname;
|
||||||
exec = pname;
|
exec = finalAttrs.pname;
|
||||||
icon = pname;
|
icon = finalAttrs.pname;
|
||||||
desktopName = "Microsoft Teams for Linux";
|
desktopName = "Microsoft Teams for Linux";
|
||||||
comment = meta.description;
|
comment = finalAttrs.meta.description;
|
||||||
categories = [ "Network" "InstantMessaging" "Chat" ];
|
categories = [ "Network" "InstantMessaging" "Chat" ];
|
||||||
})];
|
})];
|
||||||
|
|
||||||
passthru.updateScript = ./update.sh;
|
passthru.updateScript = ./update.sh;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Unofficial Microsoft Teams client for Linux";
|
description = "Unofficial Microsoft Teams client for Linux";
|
||||||
homepage = "https://github.com/IsmaelMartinez/teams-for-linux";
|
homepage = "https://github.com/IsmaelMartinez/teams-for-linux";
|
||||||
license = licenses.gpl3Only;
|
license = lib.licenses.gpl3Only;
|
||||||
maintainers = with maintainers; [ muscaln lilyinstarlight ];
|
maintainers = with lib.maintainers; [ muscaln lilyinstarlight ];
|
||||||
platforms = platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
broken = stdenv.isDarwin;
|
broken = stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue