nixpkgs/overlays/purple-slack/default.nix

31 lines
870 B
Nix
Raw Normal View History

self: super: {
purple-slack = super.purple-slack.overrideAttrs(old: {
version = "2022-08-30";
src = super.fetchFromGitHub {
owner = "dylex";
repo = "slack-libpurple";
rev = "f91a5db6f148668afac8384eb349c545308b14fd";
sha256 = "sha256-VrkjeE8MYyrjdhmFS4f1OZDN6v69lDKITQQUCj3/1zY=";
};
2022-09-01 16:44:09 +02:00
# Further ideas to add:
2022-09-07 13:57:31 +02:00
# Adjust color of text rendered to start call or open chat
2022-09-01 16:44:09 +02:00
# Add command to react to messages
# Support sending of files
2022-09-01 16:44:09 +02:00
# Prevent duplicates of incoming messages (happens from time to time)
# Formatting (bold, italic, …) see: https://github.com/dylex/slack-libpurple/pull/122
# Receive reactions
patches = (old.patches or []) ++ [
# 3rd Party
./browser-based-auth.patch
# Own
./open-command.patch
# Send upstream
./call-command.patch
];
});
}