this repo has no description
1opam-version: "2.0" 2synopsis: "Owl's OCaml interface to Eigen3 C++ library" 3description: 4 "Eigen is a thin OCaml interface to Eigen3 C++ template library used in Owl to provide basic numerical support for both sparse and dense matrix operations." 5maintainer: "Liang Wang <ryanrhymes@gmail.com>" 6authors: "Liang Wang" 7license: "MIT" 8homepage: "https://github.com/owlbarn/eigen" 9doc: "https://owlbarn.github.io/eigen/eigen" 10bug-reports: "https://github.com/owlbarn/eigen/issues" 11depends: [ 12 "ocaml" {>= "4.02"} 13 "ctypes" {>= "0.14.0"} 14 "dune" {>= "2.0.0"} 15] 16available: arch = "x86_32" | arch = "x86_64" 17build: ["dune" "build" "-p" name "-j" jobs] 18dev-repo: "git+https://github.com/owlbarn/eigen.git" 19url { 20 src: 21 "https://github.com/owlbarn/eigen/releases/download/0.2.0/eigen-0.2.0.tar.gz" 22 checksum: [ 23 "md5=69797ca3df6aca83843db88d6c2eabab" 24 "sha512=635cd2fa95dfef2adfb8ac3fa5ed0d47215e7b8299aa789844e8f3c83907b943767b984f49fc11d4e67ae29593fe543627645e1dffa800ff81d49026111e1952" 25 ] 26}