Add helper script to launch the dev shell
This commit is contained in:
parent
ab225353bf
commit
6d152ef322
3 changed files with 8 additions and 2 deletions
5
hall.scm
5
hall.scm
|
@ -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")
|
||||
|
|
|
@ -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
3
scripts/launch-dev-shell
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
guix shell -Df guix.scm -m manifest.scm "$@"
|
Loading…
Reference in a new issue