unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#69973] [PATCH] gnu: Add oils-for-unix.
@ 2024-03-24  9:49 Felix Gruber
  2024-03-24 23:16 ` [bug#69973] Regarding generated files Abhishek Cherath
  0 siblings, 1 reply; 2+ messages in thread
From: Felix Gruber @ 2024-03-24  9:49 UTC (permalink / raw)
  To: 69973; +Cc: Felix Gruber

* gnu/packages/shells.scm (oils-for-unix): New variable.

Change-Id: I0422f9d9ab6b67fb0b07d5b8bfcca7b1524baf26
---
 gnu/packages/shells.scm | 49 ++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 48 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm
index ae4e73956e..eb74a3f124 100644
--- a/gnu/packages/shells.scm
+++ b/gnu/packages/shells.scm
@@ -18,7 +18,7 @@
 ;;; Copyright © 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
 ;;; Copyright © 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
-;;; Copyright © 2021, 2022 Felix Gruber <felgru@posteo.net>
+;;; Copyright © 2021, 2022, 2023, 2024 Felix Gruber <felgru@posteo.net>
 ;;; Copyright © 2022 Andrew Tropin <andrew@trop.in>
 ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
 ;;; Copyright © 2023 David Pflug <david@pflug.io>
@@ -906,6 +906,53 @@ (define-public oil
     (license (list license:psfl                 ; tarball includes python2.7
                    license:asl2.0))))
 
+(define-public oils-for-unix
+  (package
+    (name "oils-for-unix")
+    (version "0.21.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://www.oilshell.org/download/oils-for-unix-"
+                           version ".tar.gz"))
+       (sha256
+        (base32 "0kk5mj6x2d6h1d22ig2c3nwsqj995hw1ijab3h11px09mwmq9jw3"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-cc
+           (lambda _
+             (substitute* "configure"
+               (("cc ") "gcc "))))
+         ;; The 'configure' script is not generated by autoconf and can't
+         ;; cope with "SHELL=" and "CONFIG_SHELL=" arguments, so we
+         ;; pass a custom set of arguments.
+         (replace 'configure
+           (lambda* (#:key build inputs outputs #:allow-other-keys)
+             (let ((bash (which "bash"))
+                   (out  (assoc-ref outputs "out")))
+               (invoke bash "./configure"
+                       (string-append "--prefix=" out)
+                       (string-append "--build=" build)
+                       "--with-readline"))))
+         (replace 'build
+           (lambda _
+             (invoke "_build/oils.sh")))
+         (replace 'install
+           (lambda _
+             (invoke "./install"))))))
+    (inputs
+     (list readline))
+    (home-page "https://www.oilshell.org/")
+    (synopsis "Programming language and Bash-compatible Unix shell")
+    (description "Oils contains two shells.  The Bash-compatible OSH
+and YSH, which is incompatible with Bash scripts as it tries to
+modernize the shell syntax by adding features known from scripting
+languages like Python or Ruby.")
+    (license license:asl2.0)))
+
 (define-public gash
   (package
     (name "gash")

base-commit: 28bc0e870b4d48b8e3e773382bb0e999df2e3611
-- 
2.43.0





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [bug#69973] Regarding generated files
  2024-03-24  9:49 [bug#69973] [PATCH] gnu: Add oils-for-unix Felix Gruber
@ 2024-03-24 23:16 ` Abhishek Cherath
  0 siblings, 0 replies; 2+ messages in thread
From: Abhishek Cherath @ 2024-03-24 23:16 UTC (permalink / raw)
  To: 69973

Hello,

Thanks for packaging this! build works, but it's using the pre-generated
_gen folder right? shouldn't this be building that using guix's mypy and
such?

(Any case, thanks for the patch, I've applied it locally)

Yours sincerely,
Abhishek Cherath.




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-03-24 23:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-24  9:49 [bug#69973] [PATCH] gnu: Add oils-for-unix Felix Gruber
2024-03-24 23:16 ` [bug#69973] Regarding generated files Abhishek Cherath

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).