11 lines
311 B
Nix
11 lines
311 B
Nix
final: prev:
|
|
prev.dino.overrideAttrs (finalAttrs: prevAttrs: {
|
|
patches = [
|
|
(final.fetchpatch {
|
|
# in new chats, enable omemo by default
|
|
url = "https://cyberchaos.dev/-/snippets/25/raw/main/omemo-default.patch";
|
|
hash = "sha256-WXu9R+SKexgSQ93sQfFXG2CIboW3pYe5d1nsiP07wtE=";
|
|
})
|
|
];
|
|
})
|