-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12747 from smondet/febusy.0.0.0
Add Febusy 0.0.0
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This Opam file was auto-generated, see the `please.mlt` script. | ||
opam-version: "2.0" | ||
maintainer: "Seb Mondet <seb@mondet.org>" | ||
authors: [ | ||
"Seb Mondet <seb@mondet.org>" | ||
] | ||
homepage: "https://gitlab.com/smondet/febusy" | ||
bug-reports: "https://gitlab.com/smondet/febusy/issues" | ||
dev-repo: "git+https://gitlab.com/smondet/febusy.git" | ||
license: "ISC" | ||
version: "0.0.0" | ||
build: [ | ||
["ocaml" "please.mlt" "configure"] | ||
["jbuilder" "build" "-p" "febusy" "-j" jobs ] | ||
] | ||
depends: [ | ||
"ocaml" { >= "4.03.0" } | ||
"jbuilder" {build & >= "1.0+beta20"} | ||
"nonstd" | ||
"sosa" | ||
"rresult" | ||
] | ||
synopsis: "Embedded build system library" | ||
description: """ | ||
Febusy is a library which, through a monadic API, allows one to build a | ||
dependency graph between effectful computations while keeping track of | ||
their products, a.k.a. “build artifacts.” | ||
|
||
For now, one can run the builds sequentially with the `Febusy.Edsl.Make_unix` | ||
module but the build-artifacts are still properly kept track of between runs | ||
with “state” files. | ||
""" | ||
url { | ||
src: "https://gitlab.com/smondet/febusy/-/archive/0.0.0/febusy-0.0.0.tar.gz" | ||
checksum: "md5=b2670e8b26e3d74139e9cd0b335c5424" | ||
} |