Put in earplugs

This commit is contained in:
nik gaffney 2024-01-14 17:24:25 +01:00
parent 169948d534
commit 311ca35c7e
Signed by: nik
GPG key ID: 989F5E6EDB478160

View file

@ -553,50 +553,50 @@ in parallel on an opt-in basis.")
;; via guix import opam base ;; via guix import opam base
(define-public ocaml-base ;; (define-public ocaml-base
(package ;; (package
(name "ocaml-base") ;; (name "ocaml-base")
(version "0.16.3") ;; (version "0.16.3")
(source ;; (source
(origin ;; (origin
(method url-fetch) ;; (method url-fetch)
(uri ;; (uri
"https://github.com/janestreet/base/archive/refs/tags/v0.16.3.tar.gz") ;; "https://github.com/janestreet/base/archive/refs/tags/v0.16.3.tar.gz")
(sha256 ;; (sha256
(base32 "0g7rrwnd3sb4pcpnvq7hc7dd7rg1gh0axxdhqwjh60dxw81ybycv")))) ;; (base32 "0g7rrwnd3sb4pcpnvq7hc7dd7rg1gh0axxdhqwjh60dxw81ybycv"))))
(build-system dune-build-system) ;; (build-system dune-build-system)
(propagated-inputs (list ocaml-sexplib0 dune-configurator)) ;; (propagated-inputs (list ocaml-sexplib0 dune-configurator))
(home-page "https://github.com/janestreet/base") ;; (home-page "https://github.com/janestreet/base")
(synopsis "Full standard library replacement for OCaml") ;; (synopsis "Full standard library replacement for OCaml")
(description ;; (description
"Full standard library replacement for OCaml Base is a complete and portable ;; "Full standard library replacement for OCaml Base is a complete and portable
alternative to the OCaml standard library. It provides all standard ;; alternative to the OCaml standard library. It provides all standard
functionalities one would expect from a language standard library. It uses ;; functionalities one would expect from a language standard library. It uses
consistent conventions across all of its module. Base aims to be usable in any ;; consistent conventions across all of its module. Base aims to be usable in any
context. As a result system dependent features such as I/O are not offered by ;; context. As a result system dependent features such as I/O are not offered by
Base. They are instead provided by companion libraries such as stdio: ;; Base. They are instead provided by companion libraries such as stdio:
https://github.com/janestreet/stdio") ;; https://github.com/janestreet/stdio")
(license license:expat))) ;; (license license:expat)))
;; via guix import opam sexplib0 ;; via guix import opam sexplib0
(define-public ocaml-sexplib0 ;; (define-public ocaml-sexplib0
(package ;; (package
(name "ocaml-sexplib0") ;; (name "ocaml-sexplib0")
(version "0.16.0") ;; (version "0.16.0")
(source ;; (source
(origin ;; (origin
(method url-fetch) ;; (method url-fetch)
(uri ;; (uri
"https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz") ;; "https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz")
(sha256 ;; (sha256
(base32 "07bhj2akd6i33h11qin4wns9qnjicf871yzji7vi4i8rd1ja5nw6")))) ;; (base32 "07bhj2akd6i33h11qin4wns9qnjicf871yzji7vi4i8rd1ja5nw6"))))
(build-system dune-build-system) ;; (build-system dune-build-system)
(home-page "https://github.com/janestreet/sexplib0") ;; (home-page "https://github.com/janestreet/sexplib0")
(synopsis ;; (synopsis
"Library containing the definition of S-expressions and some base converters") ;; "Library containing the definition of S-expressions and some base converters")
(description ;; (description
"Part of Jane Street's Core library The Core suite of libraries is an industrial ;; "Part of Jane Street's Core library The Core suite of libraries is an industrial
strength alternative to OCaml's standard library that was developed by Jane ;; strength alternative to OCaml's standard library that was developed by Jane
Street, the largest industrial user of OCaml.") ;; Street, the largest industrial user of OCaml.")
(license license:expat))) ;; (license license:expat)))