this repo has no description
1opam-version: "2.0" 2maintainer: "mirageos-devel@lists.openmirage.org" 3authors: "Thomas Leonard <talex5@gmail.com>" 4homepage: "https://github.com/talex5/mini-os" 5bug-reports: "https://github.com/mirage/mini-os/issues" 6license: ["BSD" "some optional GPL components"] 7dev-repo: "git+https://github.com/talex5/mini-os.git" 8available: [os != "macos" & arch = "x86_64"] 9build: [ 10 [make "debug=n" "CONFIG_VERBOSE_BOOT=n"] 11] 12install: [ 13 [make "install" "LIBDIR=%{prefix}%/lib" "INCLUDEDIR=%{prefix}%/include"] 14] 15remove: [ 16 ["rm" "-r" 17 "%{prefix}%/lib/minios-xen" 18 "%{prefix}%/lib/pkgconfig/libminios-xen.pc" 19 "%{prefix}%/include/minios-xen" 20 ] 21] 22depends: [ 23 "conf-perl" {build} 24 "conf-findutils" {build} 25] 26synopsis: "A minimal OS for running under the Xen hypervisor" 27description: """ 28Mini-OS provides architecture-specific boot code, a stack, malloc, an interrupt 29handler, a console driver, and some basic C functions. It can be used as a 30library to build unikernels such as Mirage.""" 31flags: light-uninstall 32url { 33 src: "https://github.com/talex5/mini-os/archive/v0.8.tar.gz" 34 checksum: [ 35 "sha256=f8b0203576500e7fb21ac40db7a7380b132c5340575427e31f12a7d8248cbc99" 36 "md5=c60c9fd38452673fc1af75a1f6acfa89" 37 ] 38}