snow-fort-guix-channel/packages/snow-lightweight-testing.scm

6 lines
761 B
Scheme
Raw Normal View History

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