guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: haunt: Wrap 'haunt' command so that it finds its modules.


From: Ludovic Courtès
Subject: 02/02: gnu: haunt: Wrap 'haunt' command so that it finds its modules.
Date: Wed, 10 Feb 2016 14:18:15 +0000

civodul pushed a commit to branch master
in repository guix.

commit 4ecbf6d2827849f3de57b0f185487a274bcbe758
Author: Ludovic Courtès <address@hidden>
Date:   Wed Feb 10 15:13:21 2016 +0100

    gnu: haunt: Wrap 'haunt' command so that it finds its modules.
    
    * gnu/packages/guile.scm (haunt)[arguments]: New field.
---
 gnu/packages/guile.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 6cbca7a..e6e7228 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -700,6 +700,28 @@ Guile's foreign function interface.")
                (base32
                 "15q1qwjnay7k90ppqrzqsmikvwyj61mjvf1zahyd9gm4vi2fgb3x"))))
     (build-system gnu-build-system)
+    (arguments
+     `(#:modules ((ice-9 match) (ice-9 ftw)
+                  ,@%gnu-build-system-modules)
+
+       #:phases (modify-phases %standard-phases
+                  (add-after 'install 'wrap-haunt
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      ;; Wrap the 'haunt' command to refer to the right
+                      ;; modules.
+                      (let* ((out  (assoc-ref outputs "out"))
+                             (bin  (string-append out "/bin"))
+                             (site (string-append
+                                    out "/share/guile/site")))
+                        (match (scandir site)
+                          (("." ".." version)
+                           (let ((modules (string-append site "/" version)))
+                             (wrap-program (string-append bin "/haunt")
+                               `("GUILE_LOAD_PATH" ":" prefix
+                                 (,modules))
+                               `("GUILE_LOAD_COMPILED_PATH" ":" prefix
+                                 (,modules)))
+                             #t)))))))))
     (inputs
      `(("guile" ,guile-2.0)))
     (synopsis "Functional static site generator")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]