Merge pull request #262164 from Artturin/updatemypackages1

discord updates

authored by Artturi and committed by GitHub e6910fd1 c340267c

+16 -16
+16 -16
pkgs/applications/networking/instant-messengers/discord/default.nix
··· 1 1 { branch ? "stable", callPackage, fetchurl, lib, stdenv }: 2 2 let 3 3 versions = if stdenv.isLinux then { 4 - stable = "0.0.31"; 5 - ptb = "0.0.49"; 6 - canary = "0.0.170"; 7 - development = "0.0.234"; 4 + stable = "0.0.32"; 5 + ptb = "0.0.51"; 6 + canary = "0.0.171"; 7 + development = "0.0.1"; 8 8 } else { 9 - stable = "0.0.280"; 10 - ptb = "0.0.80"; 11 - canary = "0.0.315"; 12 - development = "0.0.8797"; 9 + stable = "0.0.281"; 10 + ptb = "0.0.82"; 11 + canary = "0.0.320"; 12 + development = "0.0.2"; 13 13 }; 14 14 version = versions.${branch}; 15 15 srcs = rec { 16 16 x86_64-linux = { 17 17 stable = fetchurl { 18 18 url = "https://dl.discordapp.net/apps/linux/${version}/discord-${version}.tar.gz"; 19 - hash = "sha256-toWwiMsEFsGaOYaPZziSmZtpzxGd9m+2MtxTrJwqFbw="; 19 + hash = "sha256-XeGDKRKnvDyl0AWm9Vs/PDeIfAq/FL9AsjLt+dNg1HQ="; 20 20 }; 21 21 ptb = fetchurl { 22 22 url = "https://dl-ptb.discordapp.net/apps/linux/${version}/discord-ptb-${version}.tar.gz"; 23 - hash = "sha256-o8cDoBe6A0wBjVLjp4JXrv3QsG7TZ/Kj4+T5lj6WHdY="; 23 + hash = "sha256-VlvGZ5qy61zse0mhvrROYwr0C94Zy1Kh4D4dp+sJTN0="; 24 24 }; 25 25 canary = fetchurl { 26 26 url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz"; 27 - hash = "sha256-Lw+qLAAwyoDBKDPOBA9HR79gcnqwTshFq6GMpFS0tXA="; 27 + hash = "sha256-NcmV+DPI5hfNdBUgoaOLsjG32QfjF+x7f01B6PR10Vc="; 28 28 }; 29 29 development = fetchurl { 30 30 url = "https://dl-development.discordapp.net/apps/linux/${version}/discord-development-${version}.tar.gz"; 31 - hash = "sha256-R5UwgpXgb32mEohTzyRVXmumcgPl8UPan3UjmLFLxLo="; 31 + hash = "sha256-ogLOZZ9pTXB01TqdnmdORIzZ8GbGzskUzbG4E68gZwY="; 32 32 }; 33 33 }; 34 34 x86_64-darwin = { 35 35 stable = fetchurl { 36 36 url = "https://dl.discordapp.net/apps/osx/${version}/Discord.dmg"; 37 - hash = "sha256-SUbpzd8RIf+e+so/dXZh5OkjCvWRC+EyqgeIg4u32Hg="; 37 + hash = "sha256-Qxh9K0u99xfsVPJyAD3bFeZPxBXg2EeDyM+rbF80EC8="; 38 38 }; 39 39 ptb = fetchurl { 40 40 url = "https://dl-ptb.discordapp.net/apps/osx/${version}/DiscordPTB.dmg"; 41 - hash = "sha256-IvrCjiZ5Oa616+U8C2ihg8THj7ePV2A8+82wUWqWoPY="; 41 + hash = "sha256-U99FiR3IUL8saGtVrWblWqsCIJc0rK5ZMII9/BL5H7w="; 42 42 }; 43 43 canary = fetchurl { 44 44 url = "https://dl-canary.discordapp.net/apps/osx/${version}/DiscordCanary.dmg"; 45 - hash = "sha256-m43SijSBxcAvYAlSFpQKIFILUm4AgSQ5F4XyQJyftts="; 45 + hash = "sha256-7fPlb4x116HIXEJr1G7wVHriOQu6/2u69SpbU9qxHNw="; 46 46 }; 47 47 development = fetchurl { 48 48 url = "https://dl-development.discordapp.net/apps/osx/${version}/DiscordDevelopment.dmg"; 49 - hash = "sha256-ra0El4Y7SqanY6ZBbHE1Y+pqel4OD7nXKKfg/vndULo="; 49 + hash = "sha256-iMw61dXtThXvz2GnZiM4+tURMRfXhrN/ze1RTBL6zy8="; 50 50 }; 51 51 }; 52 52 aarch64-darwin = x86_64-darwin;