networkException
af2baa5089
This patch adds an initial implementation of a tool to download and (if encrypted) decrypt matrix media based on the decrypted event content.
8 lines
141 B
Nix
8 lines
141 B
Nix
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
# building
|
|
cargo
|
|
pkg-config
|
|
openssl
|
|
];
|
|
}
|