6 lines
687 B
Scheme
6 lines
687 B
Scheme
(define-module (snow-rapid-format) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix build-system copy) #:use-module (guix download))
|
|
|
|
(define-public snow-rapid-format (package (name "snow-rapid-format") (version "0.1.0") (source (origin (method url-fetch) (uri "https://snow-fort.org/s/rapid-scheme.org/marc/rapid/format/0.1.0/rapid-format-0.1.0.tgz") (sha256 (base32 "1v8afr7dincmzm4xybysqz2nc9ghrip3sxlgx4x8nsc53kmc8ggs")))) (build-system copy-build-system) (arguments '(#:install-plan '(("rapid/" "share/snow/rapid/")))) (synopsis "") (description "") (home-page "https://gitea.scheme.org/Rinne/snow-fort-guix-channel") (license gpl3)))
|
|
|
|
snow-rapid-format
|