me
/
guix
Archived
1
0
Fork 0

gnu: Add ocaml-mirage-bootvar-unix.

* gnu/packages/ocaml.scm (ocaml-mirage-bootvar-unix): New variable.

Signed-off-by: Christopher Baines <mail@cbaines.net>
raingloom 2023-02-15 23:00:28 +01:00 committed by Christopher Baines
parent 34589fe587
commit 48724a6642
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 20 additions and 0 deletions

View File

@ -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")