snow-fort-guix-channel/packages/snow-rapid-rbtree.scm

6 lines
689 B
Scheme
Raw Normal View History

2024-10-06 09:33:19 -04:00
(define-module (snow-rapid-rbtree) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix build-system copy) #:use-module (guix download))
(define-public snow-rapid-rbtree (package (name "snow-rapid-rbtree") (version "0.1.0") (source (origin (method url-fetch) (uri "https://snow-fort.org/s/rapid-scheme.org/marc/rapid/rbtree/0.1.0/rapid-rbtree-0.1.0.tgz") (hash (base32 "0cp0s077p9x6w9z5sw6nkiw41cr47v67ammy6qwv4vrzfb0blvl6")))) (build-system copy-build-system) (arguments (list #:install-plan '(("rapid/" "share/snow/rapid/")))) (synopsis "") (description "") (home-page "https://gitea.scheme.org/Rinne/snow-fort-guix-channel") (license gpl3)))
snow-rapid-rbtree