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-01-12 11:12:42 +07:00
version = "0.0.132";
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-01-12 11:12:42 +07:00
sha256 = "1jjbd9qllgcdpnfxg5alxpwl050vzg13rh17n638wha0vv4mjhyv";
2021-05-28 08:38:14 +07:00
};
2021-06-16 16:07:38 +07:00
};
2021-05-28 08:38:14 +07:00
}