snow-fort-guix-channel/packages/snow-generators.scm

6 lines
693 B
Scheme
Raw Normal View History

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