Commit 919dd089 authored by Malo Bourgon's avatar Malo Bourgon
Browse files

signalbackup-tools: 20230223-1 -> 20230304-3

parent b7391c69
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -2,19 +2,15 @@

(if stdenv.isDarwin then clang14Stdenv else stdenv).mkDerivation rec {
  pname = "signalbackup-tools";
  version = "20230223-1";
  version = "20230304-3";

  src = fetchFromGitHub {
    owner = "bepaald";
    repo = pname;
    rev = version;
    hash = "sha256-tBjMg+aYXmIhS2tw+D5NkBieWKiWwEVBWs6LA3rFaQQ=";
    hash = "sha256-y6ApImUkS25kUPih/hl1ngLAkeBAX+MhJ6XuiVU9aZQ=";
  };

  patches = [
    ./fix-build-darwin-clang14.patch
  ];

  postPatch = ''
    patchShebangs BUILDSCRIPT_MULTIPROC.bash44
  '';
+0 −13
Original line number Diff line number Diff line
diff --git a/signalbackup/signalbackup.h b/signalbackup/signalbackup.h
index e9fc3fb..a620571 100644
--- a/signalbackup/signalbackup.h
+++ b/signalbackup/signalbackup.h
@@ -148,7 +148,7 @@ class SignalBackup
     std::string pre;
     std::string replacement;
     std::string post;
-    bool operator<(Range const &other)
+    bool operator<(Range const &other) const
     {
       return (start < other.start) ||
         (start == other.start && start + length < other.start + other.length) ||