this repo has no description
1opam-version: "2.0" 2synopsis: "A fonctionnal shell" 3description: """ 4Gufo is an experimental replacement to bash. It supports base syntax of bash 5(direct call to external programs, file redirection,...) and nest them into a 6function layer. 7""" 8maintainer: "pierre-vittet@pvittet.com" 9authors: "pierre-vittet@pvittet.com" 10homepage: "https://gufo.pvittet.com" 11bug-reports: "https://github.com/piervit/gufo/issues" 12license: "GPL" 13dev-repo: "git+https://github.com/Piervit/gufo.git" 14build: [ 15 ["./configure" "--prefix=%{prefix}%"] 16 [make] 17] 18install: [make "install"] 19depends: [ 20 "ocaml" {>= "4.07.0"} 21 "ocamlfind" {build} 22 "menhir" {build} 23 "zed" {>= "1.6"} 24 "camomile" {< "2.0.0"} 25 "react" 26 "lwt" 27 "lambda-term" {>= "2.0.2" & < "3.3.0"} 28 "base-unix" 29 "sedlex" {>= "2.0.0" & < "3.0"} 30 "oasis" 31] 32url { 33 src: "https://github.com/Piervit/gufo/archive/0.1.2.tar.gz" 34 checksum: [ 35 "sha256=2bbe4cbad7af18708d6fb9377feb79bde632082858ba7b7390151fd4502b960b" 36 "md5=b3b37549f295b3868559d9d01457170e" 37 ] 38}