Add manifest file for Guix for easy environment setup
This commit is contained in:
parent
68a2ebd34f
commit
a779473ced
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Set up environment with the proper packages:
|
||||||
|
|
||||||
|
: guix environment -m environment.scm
|
||||||
|
|
||||||
Run tests with:
|
Run tests with:
|
||||||
|
|
||||||
: runtest --tool jlox --srcdir testsuite
|
: runtest --tool jlox --srcdir testsuite
|
||||||
|
|
9
environment.scm
Normal file
9
environment.scm
Normal 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")))
|
Loading…
Reference in a new issue