guix-commits
[Top][All Lists]
Advanced

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

05/05: gnu: ghc-process: Replace reference to /bin/sh.


From: Ricardo Wurmus
Subject: 05/05: gnu: ghc-process: Replace reference to /bin/sh.
Date: Sun, 2 Oct 2016 15:32:41 +0000 (UTC)

rekado pushed a commit to branch master
in repository guix.

commit d79e8f65b5c0b9726bef4cc89e5fe95bc824b929
Author: Ricardo Wurmus <address@hidden>
Date:   Sat Oct 1 17:02:32 2016 +0200

    gnu: ghc-process: Replace reference to /bin/sh.
    
    * gnu/packages/haskell.scm (ghc-process)[arguments]: Add phases
    "patch-reference-to-/bin/sh" to replace reference to /bin/sh.
---
 gnu/packages/haskell.scm |    9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index d79dfd6..cf17c4f 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -6918,6 +6918,7 @@ supported.  A module of colour names 
(\"Data.Colour.Names\") is provided.")
 files and directories in a portable way.")
     (license license:bsd-3)))
 
+;; Do not use this as an input.  It is part of GHC.
 (define-public ghc-process
   (package
     (name "ghc-process")
@@ -6932,6 +6933,14 @@ files and directories in a portable way.")
         (base32
          "1v1bav5isqxq9fc4lw714x94qbfsjbm2nn12kjp69r1ql8jaaaqw"))))
     (build-system haskell-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'patch-reference-to-/bin/sh
+           (lambda _
+             (substitute* "System/Process/Posix.hs"
+               (("/bin/sh") (which "sh")))
+             #t)))))
     (home-page "http://hackage.haskell.org/package/process";)
     (synopsis "System process libraries")
     (description



reply via email to

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