2021-10-31 01:55:25 +02:00
|
|
|
(define-module (manifest)
|
2022-05-26 22:46:59 +02:00
|
|
|
#:use-module (mobilizon-reshare package)
|
2021-10-31 01:55:25 +02:00
|
|
|
#:use-module (gnu packages)
|
2022-04-11 08:36:10 +02:00
|
|
|
#:use-module (guix channels)
|
|
|
|
#:use-module (guix inferior)
|
2022-01-03 20:14:31 +01:00
|
|
|
#:use-module (guix packages)
|
2022-04-11 08:36:10 +02:00
|
|
|
#:use-module (guix profiles)
|
|
|
|
#:use-module (srfi srfi-1))
|
2021-10-31 01:55:25 +02:00
|
|
|
|
|
|
|
(packages->manifest
|
2022-01-03 20:14:31 +01:00
|
|
|
(append
|
2022-05-26 22:46:59 +02:00
|
|
|
(map cadr (package-direct-inputs mobilizon-reshare))
|
2022-01-03 20:14:31 +01:00
|
|
|
(map specification->package+output
|
|
|
|
'("git-cal" "man-db" "texinfo"
|
2022-03-22 21:16:34 +01:00
|
|
|
"python-pre-commit" "cloc"
|
2022-01-03 20:14:31 +01:00
|
|
|
"ripgrep" "python-semver"
|
2022-07-26 22:23:47 +02:00
|
|
|
"fd" "docker-compose" "poetry"))))
|