diff options
author | raingloom <raingloom@riseup.net> | 2023-02-15 23:00:28 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-02-17 15:44:58 +0000 |
commit | 48724a66422e02995e62e2f707dcd9087d43bee5 (patch) | |
tree | d5a6f8e66378e0f050c1d01bf73a06a6568acfce /gnu | |
parent | 34589fe587f70a8e37dacc3d077d17a9a5f0bfb9 (diff) | |
download | guix-48724a66422e02995e62e2f707dcd9087d43bee5.tar.gz |
gnu: Add ocaml-mirage-bootvar-unix.
* gnu/packages/ocaml.scm (ocaml-mirage-bootvar-unix): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ocaml.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 79e71ebba1..dae050af50 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3976,6 +3976,26 @@ mobile platforms. Code can be developed on a normal OS and then compiled into a fully-standalone, specialised unikernel.") (license license:isc))) +(define-public ocaml-mirage-bootvar-unix + (package + (name "ocaml-mirage-bootvar-unix") + (version "0.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mirage/mirage-bootvar-unix") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1vi13q0z5ffv5hf4q5lfvkia6j2s5520px0s2x4dbjgd52icizrz")))) + (build-system dune-build-system) + (propagated-inputs (list ocaml-lwt ocaml-parse-argv)) + (home-page "https://github.com/mirage/mirage-bootvar-unix") + (synopsis "Unix implementation of MirageOS Bootvar interface") + (description "Library for passing boot parameters from Solo5 to MirageOS.") + (license license:isc))) + (define-public ocaml-duration (package (name "ocaml-duration") |