snow-fort-guix-channel/packages/snow-rapid-fix-letrec.scm

6 lines
1.2 KiB
Scheme

(define-module (snow-rapid-fix-letrec) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix build-system copy) #:use-module (guix download) #:use-module (snow-rapid-list) #:use-module (snow-rapid-analyze-library) #:use-module (snow-rapid-and-let) #:use-module (snow-rapid-receive) #:use-module (snow-rapid-comparator) #:use-module (snow-rapid-syntax) #:use-module (snow-rapid-mapping-ordered) #:use-module (snow-rapid-set) #:use-module (snow-rapid-graph))
(define-public snow-rapid-fix-letrec (package (name "snow-rapid-fix-letrec") (version "0.1.0") (source (origin (method url-fetch) (uri "https://snow-fort.org/s/rapid-scheme.org/marc/rapid/fix-letrec/0.1.0/rapid-fix-letrec-0.1.0.tgz") (sha256 (base32 "1khj5xshh8vh9cl1vha5xx3g31l63ap1l8zpbnvzh8gww4is3awd")))) (build-system copy-build-system) (arguments '(#:install-plan '(("rapid/" "share/snow/rapid/")))) (propagated-inputs (list snow-rapid-list snow-rapid-analyze-library snow-rapid-and-let snow-rapid-receive snow-rapid-comparator snow-rapid-syntax snow-rapid-mapping-ordered snow-rapid-set snow-rapid-graph)) (synopsis "") (description "") (home-page "https://gitea.scheme.org/Rinne/snow-fort-guix-channel") (license gpl3)))
snow-rapid-fix-letrec