(use-modules (guix) (guix packages) (guix download) (guix build-system gnu) (guix licenses) (gnu packages compression)) (package (name "freefilesync") (version "9.9") (source (origin (method url-fetch/zipbomb) (uri "https://www.freefilesync.org/download/FreeFileSync_9.9_Source.zip") (sha256 (base32 "0w59p5wkazrmyh9nq02wcpq4icb8k8w12f1mbm6a9mbbak4d7va3")))) (build-system gnu-build-system) (native-inputs `(("unzip" ,unzip))) (synopsis "File synchronization through a GUI") (description "Here is an alternative to Unison, written in C++ ; it is an open source crossplatform tool that has been developped for years. Synchronization is easily setup, bidirectionnal and reliable. Beware of unwanted crapware bundled with the Windows binaries through the installer, if you need these.") (home-page "https://www.freefilesync.org/") (license gpl3))