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 , fetchFromGitHub
, fetchpatch , fetchpatch
, cmake , cmake
, pkg-config , pkg-config
, openssl
, olm
, spdlog
, nlohmann_json
, coeurl , coeurl
, libevent
, curl , curl
, libevent
, nlohmann_json
, olm
, openssl
, re2
, spdlog
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "mtxclient"; pname = "mtxclient";
version = "0.8.2"; version = "0.9.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Nheko-Reborn"; owner = "Nheko-Reborn";
repo = "mtxclient"; repo = "mtxclient";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-x2c+wZWAWYoKxSqEezoInw3SwcGo9dQNDvuq7racLBA="; hash = "sha256-39tdTY2emN3/FxZxwl6dcQn1bOgybws166wqFPJl68M=";
}; };
postPatch = '' postPatch = ''
@ -39,14 +41,16 @@ stdenv.mkDerivation rec {
cmake cmake
pkg-config pkg-config
]; ];
buildInputs = [ buildInputs = [
spdlog
nlohmann_json
openssl
olm
coeurl coeurl
libevent
curl curl
libevent
nlohmann_json
olm
openssl
re2
spdlog
]; ];
meta = with lib; { meta = with lib; {