Skip to content

Commit

Permalink
mautrix-signal: 0.7.2 -> 0.7.3
Browse files Browse the repository at this point in the history
ChangeLog: https://github.com/mautrix/signal/releases/tag/v0.7.3
(cherry picked from commit 705ae9b)
  • Loading branch information
Ma27 authored and github-actions[bot] committed Dec 22, 2024
1 parent 559bcd4 commit 55f14eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
1 change: 0 additions & 1 deletion nixos/modules/services/matrix/mautrix-signal.nix
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ in
--registration='${registrationFile}'
'';
LockPersonality = true;
MemoryDenyWriteExecute = true;
NoNewPrivileges = true;
PrivateDevices = true;
PrivateTmp = true;
Expand Down
15 changes: 3 additions & 12 deletions pkgs/servers/mautrix-signal/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
stdenv,
buildGoModule,
fetchFromGitHub,
fetchpatch,
olm,
libsignal-ffi,
versionCheckHook,
Expand All @@ -17,23 +16,15 @@

buildGoModule rec {
pname = "mautrix-signal";
version = "0.7.2";
version = "0.7.3";

src = fetchFromGitHub {
owner = "mautrix";
repo = "signal";
rev = "v${version}";
hash = "sha256-KGIlLGGVaySRrHt6P2AlnDEew/ERyrDYyN2lOz3318M=";
hash = "sha256-VU0VZkh1sjOuSI+/JXZKWQF5pZ3NebBFbDdsOgaocg4=";
};

patches = [
# fixes broken media uploads, will be included in the next release
(fetchpatch {
url = "https://github.com/mautrix/signal/commit/b09995a892c9930628e1669532d9c1283a4938c8.patch";
hash = "sha256-M8TvCLZG5MbD/Bkpo4cxQf/19dPfbGzMyIPn9utPLco=";
})
];

buildInputs =
(lib.optional (!withGoolm) olm)
++ (lib.optional withGoolm stdenv.cc.cc.lib)
Expand All @@ -47,7 +38,7 @@ buildGoModule rec {

CGO_LDFLAGS = lib.optional withGoolm [ "-lstdc++" ];

vendorHash = "sha256-bKQKO5RqgMrWq7NyNF1rj2CLp5SeBP80HWxF8MWnZ1U=";
vendorHash = "sha256-fERAigormEy6+240AOkMyrjMDj5/eU0Lo4wD0AuAn+4=";

doCheck = true;
preCheck =
Expand Down

0 comments on commit 55f14eb

Please sign in to comment.