summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Gruber <felgru@posteo.net>2021-04-14 19:16:39 +0200
committerLeo Famulari <leo@famulari.name>2021-04-14 13:49:08 -0400
commitdd9e77f81bce7fd3c869ee68b7ce68153d934460 (patch)
tree47a3eb7102d446b247cf37013e60c9d7a8935484
parent563e4bd884f59f91d946de175f93fd423186843a (diff)
gnu: oil: Update to 0.8.9.
* gnu/packages/shells.scm (oil): Update to 0.8.9. [arguments]: Make the 'check' phase return #t. Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r--gnu/packages/shells.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index 5ab3642dea0..f2356dbdb4f 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -825,14 +825,14 @@ Shell (pdksh).")
825(define-public oil 825(define-public oil
826 (package 826 (package
827 (name "oil") 827 (name "oil")
828 (version "0.8.8") 828 (version "0.8.9")
829 (source 829 (source
830 (origin 830 (origin
831 (method url-fetch) 831 (method url-fetch)
832 (uri (string-append "https://www.oilshell.org/download/oil-" 832 (uri (string-append "https://www.oilshell.org/download/oil-"
833 version ".tar.gz")) 833 version ".tar.gz"))
834 (sha256 834 (sha256
835 (base32 "1g3xk160x9k5smfc9k8nnxcj7w1nacmnhnpmm72am9rjp1vpv9h1")))) 835 (base32 "080lsx7hyjhny3jzscwr152vr0g9s3c2iqg3vrpgsbk8vv7vw5l7"))))
836 (build-system gnu-build-system) 836 (build-system gnu-build-system)
837 (arguments 837 (arguments
838 `(#:strip-binaries? #f ; strip breaks the binary 838 `(#:strip-binaries? #f ; strip breaks the binary
@@ -853,7 +853,8 @@ Shell (pdksh).")
853 (lambda _ 853 (lambda _
854 (let* ((oil "_bin/oil.ovm")) 854 (let* ((oil "_bin/oil.ovm"))
855 (invoke/quiet oil "osh" "-c" "echo hi") 855 (invoke/quiet oil "osh" "-c" "echo hi")
856 (invoke/quiet oil "osh" "-n" "configure"))))))) 856 (invoke/quiet oil "osh" "-n" "configure")
857 #t))))))
857 (inputs 858 (inputs
858 `(("readline" ,readline))) 859 `(("readline" ,readline)))
859 (home-page "https://www.oilshell.org") 860 (home-page "https://www.oilshell.org")