flakes/overlays/discord.nix

13 lines
453 B
Nix
Raw Normal View History

2021-05-28 08:38:14 +07:00
self: super: {
2021-06-04 16:19:35 +07:00
discord-canary = (super.discord-canary.override rec {
version = "0.0.124";
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-06-04 16:19:35 +07:00
sha256 = "060ypr9rn5yl8iwh4v3ax1v6501yaq72sx50q47sm0wyxn7gpv91";
2021-05-28 08:38:14 +07:00
};
2021-06-04 16:19:35 +07:00
}).overrideAttrs(o: {
# TODO: delete this when upstream
nativeBuildInputs = o.nativeBuildInputs ++ [ super.xorg.libxshmfence ];
});
2021-05-28 08:38:14 +07:00
}