about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-12-01 09:04:27 +0100
committerGitHub <noreply@github.com>2023-12-01 09:04:27 +0100
commitb47adc64f090c246162752a47079feaf94a1b981 (patch)
tree4f39dbe06f023d569278bb657bdc609ab09a9ede /pkgs/applications
parent625f9cfbe46a137f1b27536c2126c5ad8fe89756 (diff)
parent7e748dcb0af82daf278992b1a09a5eb8bc089542 (diff)
downloadnixlib-b47adc64f090c246162752a47079feaf94a1b981.tar
nixlib-b47adc64f090c246162752a47079feaf94a1b981.tar.gz
nixlib-b47adc64f090c246162752a47079feaf94a1b981.tar.bz2
nixlib-b47adc64f090c246162752a47079feaf94a1b981.tar.lz
nixlib-b47adc64f090c246162752a47079feaf94a1b981.tar.xz
nixlib-b47adc64f090c246162752a47079feaf94a1b981.tar.zst
nixlib-b47adc64f090c246162752a47079feaf94a1b981.zip
Merge pull request #271057 from wegank/freefilesync-bump
freefilesync: 13.1 -> 13.2
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/freefilesync/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/networking/freefilesync/default.nix b/pkgs/applications/networking/freefilesync/default.nix
index 0727848f8a8a..b705b55723a5 100644
--- a/pkgs/applications/networking/freefilesync/default.nix
+++ b/pkgs/applications/networking/freefilesync/default.nix
@@ -24,7 +24,7 @@ let
 in
 stdenv.mkDerivation (finalAttrs: {
   pname = "freefilesync";
-  version = "13.1";
+  version = "13.2";
 
   src = fetchurl {
     url = "https://freefilesync.org/download/FreeFileSync_${finalAttrs.version}_Source.zip";
@@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: {
       rm -f $out
       tryDownload "$url"
     '';
-    hash = "sha256-xuJQOegmZHPsCmJU2akTD4nQh05M+rpnjQVEer33SCk=";
+    hash = "sha256-Hb3DkHdINtg5vNs6IcCHKxgSiN5u/2kY8V8Fnq5yFCM=";
   };
 
   sourceRoot = ".";
@@ -45,10 +45,11 @@ stdenv.mkDerivation (finalAttrs: {
       url = "https://sources.debian.org/data/main/f/freefilesync/12.0-2/debian/patches/ffs_devuan.patch";
       postFetch = ''
         substituteInPlace $out \
-          --replace "-std=c++2b" "-std=c++23"
+          --replace "-std=c++2b" "-std=c++23" \
+          --replace "imageWidth," "wxsizeToScreen(imageWidth),"
       '';
       excludes = [ "FreeFileSync/Source/ffs_paths.cpp" ];
-      hash = "sha256-CtUC94AoYTxoqSMWZrzuO3jTD46rj11JnbNyXtWckCo=";
+      hash = "sha256-LH549fJWGpJ0p6/0YNda1zZHGs/QRl1CYLC/vYKdkO4=";
     })
     # Fix build with GTK 3
     (fetchpatch {