diff mbox series

[bug#71204,2/2] manifest: Streamline; add packages useful for patch review/submission.

Message ID bd9394cb04f28448fe018778fc33602148f87aa5.1716724414.git.maxim.cournoyer@gmail.com
State New
Headers show
Series None | expand

Commit Message

Maxim Cournoyer May 26, 2024, 11:53 a.m. UTC
* manifest.scm: Fix alternate command line invocation (which would not
consider 'manifest.scm').  Use specifications instead of packages.  Remove
perl (now in the guix package's native inputs).  Add b4, git, git:send-email,
mumi, nss-certs, openssl and patman to the manifest.

Change-Id: I49d92dda059856ce217cea9054a466a1754dcf94
---

 manifest.scm | 25 +++++++++++++------------
 1 file changed, 13 insertions(+), 12 deletions(-)
diff mbox series

Patch

diff --git a/manifest.scm b/manifest.scm
index 2bc225ead7..7e4d82c3a5 100644
--- a/manifest.scm
+++ b/manifest.scm
@@ -22,18 +22,19 @@ 
 ;;
 ;; or something like
 ;;
-;;     guix shell --pure git git:send-email openssh
-
-(use-modules (guix profiles)
-             (gnu packages gnupg)
-             (gnu packages perl)
-             (gnu packages package-management))
+;;     guix shell --pure -m manifest.scm hello ...
 
 (concatenate-manifests
- (list (package->development-manifest guix)
-
-       ;; Extra packages used by make dist.
-       (packages->manifest (list perl))
-
+ (list (package->development-manifest (specification->package "guix"))
        ;; Extra packages used by unit tests.
-       (packages->manifest (list gnupg))))
+       (specifications->manifest (list "gnupg"))
+
+       ;; Useful extras for patches submission.
+       (specifications->manifest
+        (list "b4"
+              "git"
+              "git:send-email"
+              "mumi"
+              "nss-certs"
+              "openssl"              ;required if using 'smtpEncryption = tls'
+              "patman"))))