unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#64211] [PATCH] gnu: Add wasi-libc.
@ 2023-06-21 18:37 Felix Lechner via Guix-patches via
  2023-06-22 11:47 ` Jonathan Brielmaier
  0 siblings, 1 reply; 2+ messages in thread
From: Felix Lechner via Guix-patches via @ 2023-06-21 18:37 UTC (permalink / raw)
  To: 64211; +Cc: Felix Lechner

* gnu/packages/wasi.scm: New file.
* gnu/packages/wasi.scm (wasi-libc): New variable.
---

The lint run shows this message but as far as I can tell it's bogus:

gnu/packages/wasi.scm:31:12: warning: no valid tags found for wasi-libc

 gnu/local.mk          |  1 +
 gnu/packages/wasi.scm | 61 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)
 create mode 100644 gnu/packages/wasi.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index 1b59cc522b..5e9fec6e2f 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -636,6 +636,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/vpn.scm				\
   %D%/packages/vulkan.scm			\
   %D%/packages/w3m.scm				\
+  %D%/packages/wasi.scm			\
   %D%/packages/wdiff.scm			\
   %D%/packages/weather.scm			\
   %D%/packages/web.scm				\
diff --git a/gnu/packages/wasi.scm b/gnu/packages/wasi.scm
new file mode 100644
index 0000000000..8d5439c415
--- /dev/null
+++ b/gnu/packages/wasi.scm
@@ -0,0 +1,61 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2023 Felix Lechner <felix.lechner@lease-up.com>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages wasi)
+  #:use-module (gnu packages llvm)
+  #:use-module (guix build-system gnu)
+  #:use-module (guix gexp)
+  #:use-module (guix git-download)
+  #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (guix packages))
+
+(define-public wasi-libc
+  (package
+    (name "wasi-libc")
+    (version "20")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/WebAssembly/wasi-libc")
+                    (commit (string-append "wasi-sdk-" version))
+                    (recursive? #t)))
+              (file-name (git-file-name "wasi-sdk" version))
+              (sha256
+               (base32
+                "0knm5ch499dksmv1k0kh7356pjd9n1gjn0p3vp9bw57mn478zp8z"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list
+      #:tests? #f
+      #:phases
+      #~(modify-phases %standard-phases
+          (replace 'configure
+            (lambda _
+              (setenv "INSTALL_DIR" #$output))))))
+    (native-inputs (list
+                    clang))
+    (home-page "https://github.com/WebAssembly/wasi-libc")
+    (synopsis "WASI libc implementation for WebAssembly")
+    (description "WASI Libc is a libc for WebAssembly programs built on top
+of WASI system calls.  It provides a wide array of POSIX-compatible C APIs,
+including support for standard I/O, file I/O, filesystem manipulation, memory
+management, time, string, environment variables, program startup, and many
+other APIs.")
+    ;; triple-licensed under MIT/Expat and Apache 2.0 (either with or without
+    ;; the LLVM exception)
+    (license license:expat)))

base-commit: 1a0ff5cd83d3257efcab64740a1322de51fbc4a1
-- 
2.40.1





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

* [bug#64211] [PATCH] gnu: Add wasi-libc.
  2023-06-21 18:37 [bug#64211] [PATCH] gnu: Add wasi-libc Felix Lechner via Guix-patches via
@ 2023-06-22 11:47 ` Jonathan Brielmaier
  0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Brielmaier @ 2023-06-22 11:47 UTC (permalink / raw)
  To: 64211

https://gitlab.com/nonguix/nonguix/-/blob/master/nongnu/packages/wasm.scm
is pretty complete and works with Firefox.




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

end of thread, other threads:[~2023-06-22 11:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-21 18:37 [bug#64211] [PATCH] gnu: Add wasi-libc Felix Lechner via Guix-patches via
2023-06-22 11:47 ` Jonathan Brielmaier

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).