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 {
2022-03-03 01:07:30 +07:00
version = "0.0.134";
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";
2022-03-03 01:07:30 +07:00
sha256 = "0hynv9nh6lcfy44yxs33686iyzvjrnczxkppb75c6a4wa7m5l8hz";
2021-05-28 08:38:14 +07:00
};
2021-06-16 16:07:38 +07:00
};
2021-05-28 08:38:14 +07:00
}