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 3 stdenv.mkDerivation rec { 4 pname = "signalbackup-tools"; 5 - version = "20221025"; 6 7 src = fetchFromGitHub { 8 owner = "bepaald"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-icUyuohJ+nUrmFx/q5+hvjY1My25TwIqh6W6hq1pG4k="; 12 }; 13 14 postPatch = '' ··· 17 18 buildInputs = [ openssl sqlite ]; 19 20 - # Manually define `CXXFLAGS` and `LDFLAGS` on Darwin since the build scripts includes flags 21 - # that don't work on Darwin. 22 buildPhase = '' 23 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 29 runHook postBuild 30 ''; 31
··· 2 3 stdenv.mkDerivation rec { 4 pname = "signalbackup-tools"; 5 + version = "20221122"; 6 7 src = fetchFromGitHub { 8 owner = "bepaald"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-Bq1m/p1RFfyOmyEdIuHcYruwZ8ol2Bl0pmd/yft6iXA="; 12 }; 13 14 postPatch = '' ··· 17 18 buildInputs = [ openssl sqlite ]; 19 20 buildPhase = '' 21 runHook preBuild 22 + ./BUILDSCRIPT_MULTIPROC.bash44${lib.optionalString stdenv.isDarwin " --config nixpkgs-darwin"} 23 runHook postBuild 24 ''; 25