about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2022-04-15 16:41:48 +0530
committerArun Isaac2022-04-15 16:41:48 +0530
commit8ff7d3a4e187b31ecc6559646b0f2b59a360969f (patch)
tree85b88ce55272192dd7f33630d2f7f6bc78e25cd1
parentd246a28b32cbc64a4f9fe11022f51a8c118fa14b (diff)
downloadguix-bioinformatics-8ff7d3a4e187b31ecc6559646b0f2b59a360969f.tar.gz
gn: tissue: Set absolute path to guile, not git, in shebang.
* gn/packages/gemini.scm (tissue)[arguments]: In the custom
patch-source-shebangs phase, set the absolute path to guile, not git,
in the shebang.
-rw-r--r--gn/packages/gemini.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn/packages/gemini.scm b/gn/packages/gemini.scm
index 1b00a9b..09c2749 100644
--- a/gn/packages/gemini.scm
+++ b/gn/packages/gemini.scm
@@ -61,7 +61,7 @@
              (lambda* (#:key inputs outputs #:allow-other-keys)
                (substitute* "bin/tissue"
                  (("^exec guile")
-                  (string-append "exec " (assoc-ref inputs "git-minimal") "/bin/guile")))))
+                  (string-append "exec " (assoc-ref inputs "guile") "/bin/guile")))))
            (replace 'configure
              (lambda* (#:key inputs #:allow-other-keys)
                (substitute* (list "bin/tissue" "tissue/git.scm" "tissue/issue.scm")