Add manifest file for Guix for easy environment setup

This commit is contained in:
Tom Willemse 2021-07-08 00:15:52 -07:00
parent 68a2ebd34f
commit a779473ced
Signed by: ryuslash
GPG key ID: 7D5C407B435025C1
2 changed files with 13 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Set up environment with the proper packages:
: guix environment -m environment.scm
Run tests with:
: runtest --tool jlox --srcdir testsuite

9
environment.scm Normal file
View file

@ -0,0 +1,9 @@
(use-modules (guix packages))
(packages->manifest
(list (specification->package "cmake")
(specification->package "openjdk")
(list (specification->package "openjdk") "jdk")
(specification->package "coreutils")
(specification->package "make")
(specification->package "dejagnu")))