Merge pull request #202431 from malob/update-signalbackup-tools

signalbackup-tools: 20221025 -> 20221122

authored by

Jonas Heinrich and committed by
GitHub
7abad9f4 f92201f4

+3 -9
+3 -9
pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "signalbackup-tools"; 5 - version = "20221025"; 5 + version = "20221122"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bepaald"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-icUyuohJ+nUrmFx/q5+hvjY1My25TwIqh6W6hq1pG4k="; 11 + sha256 = "sha256-Bq1m/p1RFfyOmyEdIuHcYruwZ8ol2Bl0pmd/yft6iXA="; 12 12 }; 13 13 14 14 postPatch = '' ··· 17 17 18 18 buildInputs = [ openssl sqlite ]; 19 19 20 - # Manually define `CXXFLAGS` and `LDFLAGS` on Darwin since the build scripts includes flags 21 - # that don't work on Darwin. 22 20 buildPhase = '' 23 21 runHook preBuild 24 - '' + lib.optionalString stdenv.isDarwin '' 25 - export CXXFLAGS="-Wall -Wextra -Wshadow -Wold-style-cast -Woverloaded-virtual -pedantic -O3" 26 - export LDFLAGS="-Wall -Wextra -O3" 27 - '' + '' 28 - ./BUILDSCRIPT_MULTIPROC.bash44 22 + ./BUILDSCRIPT_MULTIPROC.bash44${lib.optionalString stdenv.isDarwin " --config nixpkgs-darwin"} 29 23 runHook postBuild 30 24 ''; 31 25