From a779473cede81f4d3b4eed6f6b4e4184d43ffa87 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 8 Jul 2021 00:15:52 -0700 Subject: Add manifest file for Guix for easy environment setup --- README.org | 4 ++++ environment.scm | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 environment.scm diff --git a/README.org b/README.org index 83623d7..c858497 100644 --- a/README.org +++ b/README.org @@ -1,3 +1,7 @@ +Set up environment with the proper packages: + +: guix environment -m environment.scm + Run tests with: : runtest --tool jlox --srcdir testsuite diff --git a/environment.scm b/environment.scm new file mode 100644 index 0000000..9130e76 --- /dev/null +++ b/environment.scm @@ -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"))) -- cgit v1.2.3-54-g00ecf