snow-fort-guix-channel/packages/snow-slib-topological-sort.scm

6 lines
773 B
Scheme
Raw Normal View History

2024-10-06 09:33:19 -04:00
(define-module (snow-slib-topological-sort) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix build-system copy) #:use-module (guix download))
(define-public snow-slib-topological-sort (package (name "snow-slib-topological-sort") (version "SLIB-3b5-r7rs") (source (origin (method url-fetch) (uri "https://snow-fort.org/s/peterlane.info/peter/slib/topological-sort/SLIB-3b5-r7rs/slib-topological-sort-SLIB-3b5-r7rs.tgz") (hash (base32 "1cm5bslqcl8ckhq8x69ybgyb3zdicvpl23l0n6d0ndjg0b6kk04g")))) (build-system copy-build-system) (arguments (list #:install-plan '(("slib/" "share/snow/slib/")))) (synopsis "") (description "") (home-page "https://gitea.scheme.org/Rinne/snow-fort-guix-channel") (license public-domain)))
snow-slib-topological-sort