diff options
-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)) |