diff options
author | Caleb Ristvedt <caleb.ristvedt@cune.org> | 2018-05-27 19:19:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-01 15:35:32 +0200 |
commit | 7f9d184d9b688d13ce76eefabaddcfa76bdde2b5 (patch) | |
tree | 49e5cfef7619c8faff4424990831ddea30e8d9dc /.dir-locals.el | |
parent | d59e75f3b5b82692bd250a1a3a9965397bb588c5 (diff) | |
download | patches-7f9d184d9b688d13ce76eefabaddcfa76bdde2b5.tar patches-7f9d184d9b688d13ce76eefabaddcfa76bdde2b5.tar.gz |
Add (gnu store database).
* guix/config.scm.in (%store-database-directory): New variable.
* guix/store/database.scm: New file.
* tests/store-database.scm: New file.
* Makefile.am (STORE_MODULES): New variable.
(MODULES, MODULES_NOT_COMPILED): Adjust accordingly.
(SCM_TESTS) [HAVE_GUILE_SQLITE3]: Add tests/store-database.scm.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el index 2db751ca22..eb99a5bcc1 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -75,6 +75,8 @@ (eval . (put 'with-imported-modules 'scheme-indent-function 1)) (eval . (put 'with-extensions 'scheme-indent-function 1)) + (eval . (put 'with-database 'scheme-indent-function 2)) + (eval . (put 'call-with-container 'scheme-indent-function 1)) (eval . (put 'container-excursion 'scheme-indent-function 1)) (eval . (put 'eventually 'scheme-indent-function 1)) |