From 6461f4dad5343511c327fbc50e42df7b7485bba6 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Tue, 5 Nov 2024 13:37:07 +0100 Subject: [PATCH] mautrix-signal: add version test Signed-off-by: Christoph Heiss --- pkgs/servers/mautrix-signal/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/servers/mautrix-signal/default.nix b/pkgs/servers/mautrix-signal/default.nix index 89cb7ab907f39..d6b7c7904ca7c 100644 --- a/pkgs/servers/mautrix-signal/default.nix +++ b/pkgs/servers/mautrix-signal/default.nix @@ -6,6 +6,7 @@ fetchpatch, olm, libsignal-ffi, + versionCheckHook, # This option enables the use of an experimental pure-Go implementation of # the Olm protocol instead of libolm for end-to-end encryption. Using goolm # is not recommended by the mautrix developers, but they are interested in @@ -54,6 +55,10 @@ buildGoModule rec { export LD_LIBRARY_PATH="${stdenv.cc.cc.lib}/lib:$LD_LIBRARY_PATH" ''; + doInstallCheck = true; + nativeInstallCheckInputs = [ versionCheckHook ]; + versionCheckProgramArg = [ "--version" ]; + meta = with lib; { homepage = "https://github.com/mautrix/signal"; description = "Matrix-Signal puppeting bridge";