flakes/overlays/discord.nix

10 lines
313 B
Nix
Raw Normal View History

2021-05-28 08:38:14 +07:00
self: super: {
2021-06-16 16:07:38 +07:00
discord-canary = super.discord-canary.override rec {
2021-09-02 08:11:16 +07:00
version = "0.0.129";
2021-05-28 08:38:14 +07:00
src = builtins.fetchurl {
url = "https://dl-canary.discordapp.net/apps/linux/${version}/discord-canary-${version}.tar.gz";
2021-09-02 08:11:16 +07:00
sha256 = "1x49vvd363w9xyrzjgmynj2b320hzpz388fh5vpp0q0qk8q3gwkk";
2021-05-28 08:38:14 +07:00
};
2021-06-16 16:07:38 +07:00
};
2021-05-28 08:38:14 +07:00
}