summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--guix.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/guix.scm b/guix.scm
index 9eedc33..9ae544b 100644
--- a/guix.scm
+++ b/guix.scm
@@ -40,6 +40,11 @@
            #:phases
            (with-imported-modules '((guix build guile-build-system))
              #~(modify-phases %standard-phases
+                 (replace 'patch-source-shebangs
+                   (lambda* (#:key inputs #:allow-other-keys)
+                     (substitute* "bin/tissue"
+                       (("^exec guile")
+                        (string-append "exec " (search-input-file inputs "/bin/guile"))))))
                  (delete 'configure)
                  (add-after 'install 'wrap
                    (lambda* (#:key inputs outputs #:allow-other-keys)