2021-10-31 01:55:25 +02:00
|
|
|
(define-module (manifest)
|
|
|
|
#:use-module (docker mobilizon-reshare)
|
|
|
|
#:use-module (gnu packages)
|
2022-01-03 20:14:31 +01:00
|
|
|
#:use-module (guix packages)
|
2021-10-31 01:55:25 +02:00
|
|
|
#:use-module (guix profiles))
|
|
|
|
|
|
|
|
(packages->manifest
|
2022-01-03 20:14:31 +01:00
|
|
|
(append
|
|
|
|
(map cadr (package-direct-inputs mobilizon-reshare.git))
|
|
|
|
(map specification->package+output
|
|
|
|
'("git-cal" "man-db" "texinfo"
|
|
|
|
"python-pre-commit"
|
|
|
|
"ripgrep" "python-semver"
|
2022-01-26 10:11:16 +01:00
|
|
|
"fd" "docker-compose"))))
|