mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
8329281111
Use in matrix-appservice-slack, matrix-appservice-discord & mjolnir
14 lines
599 B
Nix
14 lines
599 B
Nix
import ./generic.nix {
|
|
version = "0.1.0-beta.3";
|
|
hash = "sha256-0p+1cMn9PU+Jk2JW7G+sdzxhMaI3gEAk5w2nm05oBSU=";
|
|
outputHashes = {
|
|
"uniffi-0.21.0" = "sha256-blKCfCsSNtr8NtO7Let7VJ/9oGuW9Eu8j9A6/oHUcP0=";
|
|
};
|
|
cargoLock = ./Cargo-beta.3.lock;
|
|
patches = [
|
|
# This is needed because two versions of indexed_db_futures are present (which will fail to vendor, see https://github.com/rust-lang/cargo/issues/10310).
|
|
# (matrix-sdk-crypto-nodejs doesn't use this dependency, we only need to remove it to vendor the dependencies successfully.)
|
|
./remove-duplicate-dependency.patch
|
|
];
|
|
}
|