(define-module (gnu packages freefilesync) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix licenses) #:use-module (gnu packages gawk)) (define-public freefilesync (package (name "FreeFileSync") (version "9.9") (source (origin (method url-fetch) (uri "https://www.freefilesync.org/download/FreeFileSync_9.9_Source.zip") (sha256 (base32 "0w59p5wkazrmyh9nq02wcpq4icb8k8w12f1mbm6a9mbbak4d7va3")))) (build-system gnu-build-system) (synopsis "FreeFileSync, Open Source File Synchroniszation") (description "multiplatform, C++, open source but comes with malware according to some") (home-page "https://www.freefilesync.org/") (license gpl3)))