summary refs log tree commit diff
path: root/pkgs/development/libraries/mtxclient
diff options
context:
space:
mode:
authorMichele Guerini Rocco <rnhmjoj@users.noreply.github.com>2021-01-23 14:16:14 +0100
committerGitHub <noreply@github.com>2021-01-23 14:16:14 +0100
commitbba33c36fa09d86c26c5f34c46a6743abf607fa4 (patch)
tree0143d13205727a2d72159a7e10968e1a0a769316 /pkgs/development/libraries/mtxclient
parenta57e182ed6d699d3bd1989cced4fe875b8fee08a (diff)
parent194d6a65e109664bb5329c0a0b17bd78266fe661 (diff)
downloadnixpkgs-bba33c36fa09d86c26c5f34c46a6743abf607fa4.tar
nixpkgs-bba33c36fa09d86c26c5f34c46a6743abf607fa4.tar.gz
nixpkgs-bba33c36fa09d86c26c5f34c46a6743abf607fa4.tar.bz2
nixpkgs-bba33c36fa09d86c26c5f34c46a6743abf607fa4.tar.lz
nixpkgs-bba33c36fa09d86c26c5f34c46a6743abf607fa4.tar.xz
nixpkgs-bba33c36fa09d86c26c5f34c46a6743abf607fa4.tar.zst
nixpkgs-bba33c36fa09d86c26c5f34c46a6743abf607fa4.zip
Merge pull request #110457 from pstn/mtxdrop
mtxclient: Remove unneeded dependencies, add myself as maintainer.
Diffstat (limited to 'pkgs/development/libraries/mtxclient')
-rw-r--r--pkgs/development/libraries/mtxclient/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/development/libraries/mtxclient/default.nix b/pkgs/development/libraries/mtxclient/default.nix
index 38c95a5a19f..d1834de5558 100644
--- a/pkgs/development/libraries/mtxclient/default.nix
+++ b/pkgs/development/libraries/mtxclient/default.nix
@@ -5,8 +5,6 @@
 , pkg-config
 , boost17x
 , openssl
-, zlib
-, libsodium
 , olm
 , spdlog
 , nlohmann_json
@@ -42,8 +40,6 @@ stdenv.mkDerivation rec {
     spdlog
     boost17x
     openssl
-    zlib
-    libsodium
     olm
   ];
 
@@ -51,7 +47,7 @@ stdenv.mkDerivation rec {
     description = "Client API library for Matrix, built on top of Boost.Asio";
     homepage = "https://github.com/Nheko-Reborn/mtxclient";
     license = licenses.mit;
-    maintainers = with maintainers; [ fpletz ];
+    maintainers = with maintainers; [ fpletz pstn ];
     platforms = platforms.all;
     # Should be fixable if a higher clang version is used, see:
     # https://github.com/NixOS/nixpkgs/pull/85922#issuecomment-619287177