Check add manifest into hall, and rewrite manifest to build in a container

This commit is contained in:
TakeV 2023-07-03 00:18:22 -07:00
parent d4fd886bcb
commit 0a030d4515
Signed by: TakeV
GPG Key ID: A64F41345C7400AF
2 changed files with 14 additions and 11 deletions

View File

@ -8,23 +8,22 @@
(description "An nREPL implementation in guile")
(home-page "")
(license gpl3+)
(dependencies `(("guile-config" ,guile-config)
("guile-torrent" ,guile-torrent)))
(dependencies
`(("guile-config" ,guile-config)
("guile-torrent" ,guile-torrent)))
(skip ())
(files (libraries
((directory
"guile-nrepl"
((scheme-file "bencode")))
(scheme-file "guile-nrepl")))
((scheme-file "bencode")))))
(tests ((directory "tests" ((scheme-file "bencode")))))
(programs ((directory "scripts" ())))
(documentation
((directory "doc" ((texi-file "guile-nrepl")))
(text-file "COPYING")
((symlink "README" "README.org")
(text-file "HACKING")
(symlink "README" "README.org")
(org-file "README")))
(text-file "COPYING")
(directory "doc" ((texi-file "guile-nrepl")))))
(infrastructure
((scheme-file "hall")
((scheme-file "guix")
(text-file ".gitignore")
(scheme-file "guix")))))
(scheme-file "hall")))))

View File

@ -2,4 +2,8 @@
;; You can store it in a file that you may then pass to any 'guix' command
;; that accepts a '--manifest' (or '-m') option.
(specifications->manifest (list "guile-hall"))
(concatenate-manifests
(list (specifications->manifest
(list "guile-hall" "guile-torrent"))
(package->development-manifest
(specification->package "guile-hall"))))