mtxclient: 0.8.2 -> 0.9.0

This commit is contained in:
Peter Hoeg 2023-01-13 10:19:02 +08:00
parent e51ff0d56c
commit 0244049649

View file

@ -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; {