this repo has no description
1# This Opam file was auto-generated, see the `please.mlt` script. 2opam-version: "2.0" 3maintainer: "Seb Mondet <seb@mondet.org>" 4authors: [ 5 "Seb Mondet <seb@mondet.org>" 6] 7homepage: "https://gitlab.com/smondet/febusy" 8bug-reports: "https://gitlab.com/smondet/febusy/issues" 9dev-repo: "git+https://gitlab.com/smondet/febusy.git" 10license: "ISC" 11build: [ 12 ["ocaml" "please.mlt" "configure"] 13 ["jbuilder" "build" "-p" "febusy" "-j" jobs ] 14] 15depends: [ 16 "ocaml" { >= "4.03.0" } 17 "jbuilder" {>= "1.0+beta20"} 18 "nonstd" {>= "0.0.2"} 19 "sosa" 20 "rresult" {>= "0.3.0"} 21] 22synopsis: "Embedded build system library" 23description: """ 24Febusy is a library which, through a monadic API, allows one to build a 25dependency graph between effectful computations while keeping track of 26their products, a.k.a. “build artifacts.” 27 28For now, one can run the builds sequentially with the `Febusy.Edsl.Make_unix` 29module but the build-artifacts are still properly kept track of between runs 30with “state” files. 31""" 32url { 33 src: 34 "https://gitlab.com/smondet/febusy/-/archive/0.0.0/febusy-0.0.0.tar.gz" 35 checksum: [ 36 "sha256=8a23c34c0f3a0c53916b7a79c0a7f7e6f7918101e08282665d41bc530f147aa9" 37 "md5=b2670e8b26e3d74139e9cd0b335c5424" 38 ] 39}