Add helper script to launch the dev shell

This commit is contained in:
TakeV 2023-12-13 09:42:00 -05:00
parent ab225353bf
commit 6d152ef322
Signed by: TakeV
GPG Key ID: A64F41345C7400AF
3 changed files with 8 additions and 2 deletions

View File

@ -16,7 +16,10 @@
((scheme-file "docs") (scheme-file "reflection")))
(scheme-file "guile-docs")))
(tests ())
(programs ())
(programs
((directory
"scripts"
((text-file "launch-dev-shell")))))
(documentation
((directory "doc" ((texi-file "guile-docs")))
(text-file "COPYING")

View File

@ -2,4 +2,4 @@
;; 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 "guix" "git"))
(specifications->manifest (list "guile-hall" "guix" "git"))

3
scripts/launch-dev-shell Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
guix shell -Df guix.scm -m manifest.scm "$@"