guix-patches
[Top][All Lists]
Advanced

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

[bug#66977] [PATCH 01/16] gnu: cl-trivial-shell: Patch shell path.


From: Sharlatan Hellseher
Subject: [bug#66977] [PATCH 01/16] gnu: cl-trivial-shell: Patch shell path.
Date: Tue, 7 Nov 2023 00:57:45 +0000

* gnu/packages/lisp-xyz.scm (sbcl-trivial-shell):
[source]: Update URL as maintainer and owner of repository was changed.
[arguments]: Add 'fix-paths phase to patch location of the shell.

Change-Id: Ib3ac95013d3cb5240eb0261ad53f484b14d8f76f
---
 gnu/packages/lisp-xyz.scm | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 4743e39d93..4e9b9894b2 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -17097,12 +17097,21 @@ (define-public sbcl-trivial-shell
        (origin
          (method git-fetch)
          (uri (git-reference
-               (url "https://github.com/gwkkwg/trivial-shell";)
+               (url "https://github.com/hraban/trivial-shell";)
                (commit commit)))
          (file-name (git-file-name name version))
          (sha256
           (base32 "08mpkl5ij5sjfsyn8pq2kvsvpvyvr7ha1r8g1224fa667b8k2q85"))))
       (build-system asdf-build-system/sbcl)
+      (arguments
+       (list
+        #:phases
+        #~(modify-phases %standard-phases
+            (add-after 'unpack 'fix-paths
+              (lambda _
+                (substitute* "dev/definitions.lisp"
+                  (("/bin/sh")
+                   (which "sh"))))))))
       (native-inputs
        (list sbcl-lift))
       (home-page "https://common-lisp.net/project/trivial-shell/";)
-- 
2.41.0






reply via email to

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