From ece3381f66ac6d755d196bffa9961ac412c0c774 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 23 May 2023 23:35:44 -0700 Subject: [PATCH] Add Guix manifest file With this file I can run the `guix shell --manifest=manifest.scm' command and get all the required dependencies for this project, which right now is just emacs-eldev. --- manifest.scm | 1 + 1 file changed, 1 insertion(+) create mode 100644 manifest.scm diff --git a/manifest.scm b/manifest.scm new file mode 100644 index 0000000..9888bad --- /dev/null +++ b/manifest.scm @@ -0,0 +1 @@ +(specifications->manifest '("emacs-eldev"))