6 lines
689 B
Scheme
6 lines
689 B
Scheme
(define-module (snow-rapid-set-test) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix build-system copy) #:use-module (guix download))
|
|
|
|
(define-public snow-rapid-set-test (package (name "snow-rapid-set-test") (version "0.1.0") (source (origin (method url-fetch) (uri "https://snow-fort.org/s/rapid-scheme.org/marc/rapid/set/0.1.0/rapid-set-0.1.0.tgz") (sha256 (base32 "17rjh9wvaghh3bdnfvzf53bmrh4mbcj0a6fi62p668shwbwzzg6j")))) (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-set-test
|