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") (description "An nREPL implementation in guile")
(home-page "") (home-page "")
(license gpl3+) (license gpl3+)
(dependencies `(("guile-config" ,guile-config) (dependencies
("guile-torrent" ,guile-torrent))) `(("guile-config" ,guile-config)
("guile-torrent" ,guile-torrent)))
(skip ()) (skip ())
(files (libraries (files (libraries
((directory ((directory
"guile-nrepl" "guile-nrepl"
((scheme-file "bencode"))) ((scheme-file "bencode")))))
(scheme-file "guile-nrepl")))
(tests ((directory "tests" ((scheme-file "bencode"))))) (tests ((directory "tests" ((scheme-file "bencode")))))
(programs ((directory "scripts" ()))) (programs ((directory "scripts" ())))
(documentation (documentation
((directory "doc" ((texi-file "guile-nrepl"))) ((symlink "README" "README.org")
(text-file "COPYING")
(text-file "HACKING") (text-file "HACKING")
(symlink "README" "README.org") (text-file "COPYING")
(org-file "README"))) (directory "doc" ((texi-file "guile-nrepl")))))
(infrastructure (infrastructure
((scheme-file "hall") ((scheme-file "guix")
(text-file ".gitignore") (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 ;; You can store it in a file that you may then pass to any 'guix' command
;; that accepts a '--manifest' (or '-m') option. ;; 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"))))