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"] 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.7.tar.gz" 34 checksum: [ 35 "sha256=8fa9d7c55d91b947bcb4a5a389e1d5650dd638e62455a0f33d1c62b309c31b7d" 36 "md5=5d317b28e6e540fb027f9f8be871c4af" 37 ] 38}