diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2023-07-23 11:20:03 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:15:42 +0000 |
commit | a163b854441a1d823b92306205bb458a2a08c20d (patch) | |
tree | 3b10ee8aa0f5baf3569a81e6286be43b5620b0ed /Makefile.am | |
parent | eabed5e53d16cd37404614fd299656823d09f9e7 (diff) |
guix: toml: Add TOML parser.
* guix/build/toml.scm: New file.
* tests/toml.scm: New file.
* Makefile.am: Register new files.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 27ea69d8da..d3eeaddaf4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -285,6 +285,7 @@ MODULES = \ guix/build/qt-utils.scm \ guix/build/zig-build-system.scm \ guix/build/make-bootstrap.scm \ + guix/build/toml.scm \ guix/search-paths.scm \ guix/packages.scm \ guix/import/cabal.scm \ @@ -605,6 +606,7 @@ SCM_TESTS = \ tests/system.scm \ tests/style.scm \ tests/texlive.scm \ + tests/toml.scm \ tests/transformations.scm \ tests/ui.scm \ tests/union.scm \ |