this repo has no description
1opam-version: "2.0" 2maintainer: "Juergen Hoetzel <juergen@archlinux.org>" 3authors: "Juergen Hoetzel <juergen@archlinux.org>" 4homepage: "https://github.com/juergenhoetzel/ocaml-systemd/" 5bug-reports: "https://github.com/juergenhoetzel/ocaml-systemd/issues" 6dev-repo: "git+https://github.com/juergenhoetzel/ocaml-systemd.git" 7license: "LGPL-3.0-only WITH OCaml-LGPL-linking-exception" 8 9build: ["dune" "build" "-p" "systemd" "-j" jobs] 10install: ["dune" "install" "-p" "systemd" "systemd"] 11 12depends: [ 13 "ocaml" 14 "dune" {>= "2.0"} 15] 16depexts: [ 17 ["libsystemd-dev"] {os-family = "debian"} 18 ["systemd-devel"] {os-family = "suse" | os-family = "opensuse" | os-family = "fedora"} 19] 20synopsis: "OCaml module for native access to the systemd facilities" 21description: """ 22* Logging to the Journal 23* Socket activation 24* Watchdog 25* Notifications""" 26url { 27 src: "https://github.com/juergenhoetzel/ocaml-systemd/archive/1.3.tar.gz" 28 checksum: [ 29 "sha256=717acee7f71bc04ff3bb53c0af1231bd5c8112d4f2c1830562d5087cf1d4b152" 30 "sha512=9e69281cee9e26ee96bf33dc7624c6866021b2f227214c0e1376c101c77b245ab52c1a044c0b7be87d7a20beea81bb69fb33df450c7311b8fec3a608e650d7c2" 31 ] 32} 33available: [os = "linux" & os-family != "alpine" ]