diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-11-23 19:30:26 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-11-23 19:30:26 +0100 |
commit | 9e4b24ec1160a8a998e6853da8fe72cbcc5b3d09 (patch) | |
tree | df5e576ca53d71eac7b103b313aea4a2043d1f17 | |
parent | 8dcaf666fb9f29a155d39f0dc3a3b6e2ea7407ba (diff) | |
download | haketilo-hydrilla-9e4b24ec1160a8a998e6853da8fe72cbcc5b3d09.tar.gz haketilo-hydrilla-9e4b24ec1160a8a998e6853da8fe72cbcc5b3d09.zip |
name the `hydrilla.scm` containing directory `guix-module-dir`
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | guix-module-dir/hydrilla.scm (renamed from hydrilla-guix/hydrilla.scm) | 0 | ||||
-rw-r--r-- | guix.scm | 6 |
3 files changed, 5 insertions, 3 deletions
@@ -57,7 +57,7 @@ doc: # easier for non-technical users to remove the unpacked release once they no # longer need it. release: dist doc - $(GUIX_TM) pack -L ./hydrilla-guix -RR hydrilla \ + $(GUIX_TM) pack -L ./guix-module-dir -RR hydrilla \ -S /hydrilla=bin/hydrilla \ -S /hydrilla-builder=bin/hydrilla-builder \ -S /hydrilla-server=bin/hydrilla-server \ diff --git a/hydrilla-guix/hydrilla.scm b/guix-module-dir/hydrilla.scm index 1e266af..1e266af 100644 --- a/hydrilla-guix/hydrilla.scm +++ b/guix-module-dir/hydrilla.scm @@ -6,10 +6,12 @@ ;; We need the actual hydrilla package to be defined in a module so that we can ;; specify it to guix-pack. Hence, the bulk of definitions resides in -;; `hydrilla-guix/hydrilla.scm` and this file is just a thin wrapper around +;; `guix-module-dir/hydrilla.scm` and this file is just a thin wrapper around ;; that. -(add-to-load-path (string-append (dirname (current-filename)) "/hydrilla-guix")) +(add-to-load-path (string-append + (dirname (current-filename)) + "/guix-module-dir")) (use-modules (hydrilla)) |