diff --git a/pkgs/by-name/fr/freefilesync/package.nix b/pkgs/by-name/fr/freefilesync/package.nix index 27f345ce4c2e..75b8061bf679 100644 --- a/pkgs/by-name/fr/freefilesync/package.nix +++ b/pkgs/by-name/fr/freefilesync/package.nix @@ -1,24 +1,25 @@ -{ lib -, stdenv -, fetchurl -, fetchpatch -, fetchDebianPatch -, copyDesktopItems -, pkg-config -, wrapGAppsHook3 -, unzip -, curl -, glib -, gtk3 -, libssh2 -, openssl -, wxGTK32 -, makeDesktopItem +{ + lib, + stdenv, + fetchurl, + fetchpatch, + fetchDebianPatch, + copyDesktopItems, + pkg-config, + wrapGAppsHook3, + unzip, + curl, + glib, + gtk3, + libssh2, + openssl, + wxGTK32, + makeDesktopItem, }: stdenv.mkDerivation (finalAttrs: { pname = "freefilesync"; - version = "13.7"; + version = "13.8"; src = fetchurl { url = "https://freefilesync.org/download/FreeFileSync_${finalAttrs.version}_Source.zip"; @@ -27,7 +28,7 @@ stdenv.mkDerivation (finalAttrs: { rm -f $out tryDownload "$url" ''; - hash = "sha256-bS3J0uevtZH/yjoOtqSMYVHRaNegW6NMOZv7ctW5oRc="; + hash = "sha256-nciunM5qDY8bxR09mv98CO5TU1BWmeFnByKHo7qqRc4="; }; sourceRoot = "."; @@ -116,7 +117,10 @@ stdenv.mkDerivation (finalAttrs: { genericName = "Folder Comparison and Synchronization"; icon = name; exec = name; - categories = [ "Utility" "FileTools" ]; + categories = [ + "Utility" + "FileTools" + ]; }) (makeDesktopItem rec { name = "RealTimeSync"; @@ -124,14 +128,22 @@ stdenv.mkDerivation (finalAttrs: { genericName = "Automated Synchronization"; icon = name; exec = name; - categories = [ "Utility" "FileTools" ]; + categories = [ + "Utility" + "FileTools" + ]; }) ]; meta = with lib; { description = "Open Source File Synchronization & Backup Software"; homepage = "https://freefilesync.org"; - license = [ licenses.gpl3Only licenses.openssl licenses.curl licenses.bsd3 ]; + license = [ + licenses.gpl3Only + licenses.openssl + licenses.curl + licenses.bsd3 + ]; maintainers = with maintainers; [ wegank ]; platforms = platforms.linux; };