(define-module (snow-srfi-64-test) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix build-system copy) #:use-module (guix download)) (define-public snow-srfi-64-test (package (name "snow-srfi-64-test") (version "0.1.0") (source (origin (method url-fetch) (uri "https://snow-fort.org/s/fisher.cx/robert/srfi/64/0.1.0/srfi-64-0.1.0.tgz") (hash (base32 "1wm76l4s0i1qqi5qln26ipw9c7kfz0v7wk5gahwyhbyjwmgi81xf")))) (build-system copy-build-system) (arguments (list #:install-plan '(("srfi/" "share/snow/srfi/")))) (synopsis "") (description "") (home-page "https://gitea.scheme.org/Rinne/snow-fort-guix-channel") (license public-domain))) snow-srfi-64-test