mirror of
https://github.com/Tech-Workers-Coalition-Italia/mobilizon-reshare.git
synced 2025-02-18 04:30:53 +01:00
* Move scheduler.py into scripts/ . * docker: Python scheduler image. * Update channels-lock.scm. * Use tortoise 0.18.1 and aerich 0.6.2. * Use fishinthecalculator/publish-docker-image-action@v0.1.10 . * Make intervals configurable. * Add platforms to README.md .
15 lines
429 B
Scheme
15 lines
429 B
Scheme
(define-module (manifest)
|
|
#:use-module (docker mobilizon-reshare)
|
|
#:use-module (gnu packages)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix profiles))
|
|
|
|
(packages->manifest
|
|
(append
|
|
(map cadr (package-direct-inputs mobilizon-reshare.git))
|
|
(map specification->package+output
|
|
'("git-cal" "man-db" "texinfo"
|
|
"python-pre-commit"
|
|
"ripgrep" "python-semver"
|
|
"fd" "docker-compose"))))
|