summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2023-01-13 10:19:02 +0800
committerPeter Hoeg <peter@hoeg.com>2023-01-13 18:34:48 +0800
commit02440496496b6cda5af164ef48dcc453ca83d46e (patch)
tree54f5b3553b7608e0de18bea06863c6f3b52d199e
parente51ff0d56c651a555722e4e6c6d76c5956061b34 (diff)
mtxclient: 0.8.2 -> 0.9.0
-rw-r--r--pkgs/development/libraries/mtxclient/default.nix30
1 files changed, 17 insertions, 13 deletions
diff --git a/pkgs/development/libraries/mtxclient/default.nix b/pkgs/development/libraries/mtxclient/default.nix
index 7f4585c640e1..7513614a51e8 100644
--- a/pkgs/development/libraries/mtxclient/default.nix
+++ b/pkgs/development/libraries/mtxclient/default.nix
@@ -1,26 +1,28 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, pkg-config
-, openssl
-, olm
-, spdlog
-, nlohmann_json
, coeurl
-, libevent
, curl
+, libevent
+, nlohmann_json
+, olm
+, openssl
+, re2
+, spdlog
}:
stdenv.mkDerivation rec {
pname = "mtxclient";
- version = "0.8.2";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "Nheko-Reborn";
repo = "mtxclient";
rev = "v${version}";
- sha256 = "sha256-x2c+wZWAWYoKxSqEezoInw3SwcGo9dQNDvuq7racLBA=";
+ hash = "sha256-39tdTY2emN3/FxZxwl6dcQn1bOgybws166wqFPJl68M=";
};
postPatch = ''
@@ -39,14 +41,16 @@ stdenv.mkDerivation rec {
cmake
pkg-config
];
+
buildInputs = [
- spdlog
- nlohmann_json
- openssl
- olm
coeurl
- libevent
curl
+ libevent
+ nlohmann_json
+ olm
+ openssl
+ re2
+ spdlog
];
meta = with lib; {