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-25 15:46:27 +07:00
version = "0.0.131";
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-25 15:46:27 +07:00
sha256 = "087rzyivk0grhc73v7ldxxghks0n16ifrvpmk95vzaw99l9xv0v5";
2021-05-28 08:38:14 +07:00
};
2021-06-16 16:07:38 +07:00
};
2021-05-28 08:38:14 +07:00
}