From 4c17a3630b13ecfd93ffce593f34196969bd7975 Mon Sep 17 00:00:00 2001 From: Vivianne Langdon Date: Tue, 12 Dec 2023 23:45:07 -0500 Subject: [PATCH] Add dir locals and add haunt dependency --- .dir-locals.el | 4 ++++ guix.scm | 54 +++++++++++++++++++++++++------------------------- 2 files changed, 31 insertions(+), 27 deletions(-) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..b591c33 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,4 @@ +;;; Directory Local Variables -*- no-byte-compile: t -*- +;;; For more information see (info "(emacs) Directory Variables") + +((scheme-mode . ((tab-width . 4)))) diff --git a/guix.scm b/guix.scm index 80b9c31..bd5a2dc 100644 --- a/guix.scm +++ b/guix.scm @@ -1,30 +1,30 @@ (use-modules - (guix packages) - ((guix licenses) #:prefix license:) - (guix download) - (guix build-system gnu) - (gnu packages) - (gnu packages autotools) - (gnu packages guile) - (gnu packages guile-xyz) - (gnu packages pkg-config) - (gnu packages texinfo)) + (guix packages) + ((guix licenses) #:prefix license:) + (guix download) + (guix build-system gnu) + (gnu packages) + (gnu packages autotools) + (gnu packages guile) + (gnu packages guile-xyz) + (gnu packages pkg-config) + (gnu packages texinfo)) (package - (name "guile-guile-docs") - (version "0.1") - (source "./guile-guile-docs-0.1.tar.gz") - (build-system gnu-build-system) - (arguments `()) - (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("pkg-config" ,pkg-config) - ("texinfo" ,texinfo))) - (inputs `(("guile" ,guile-3.0))) - (propagated-inputs `()) - (synopsis "") - (description "") - (home-page "") - (license license:gpl3+)) - + (name "guile-guile-docs") + (version "0.1") + (source "./guile-guile-docs-0.1.tar.gz") + (build-system gnu-build-system) + (arguments `()) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("pkg-config" ,pkg-config) + ("texinfo" ,texinfo))) + (inputs (list guile-3.0 + haunt)) + (propagated-inputs `()) + (synopsis "") + (description "") + (home-page "") + (license license:gpl3+))