forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHANGES: - skolemlabs/middleware#1: initial implementation
- Loading branch information
Showing
1 changed file
with
39 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,39 @@ | ||
opam-version: "2.0" | ||
synopsis: "Composable stacked functions, which can respond to inner calls" | ||
maintainer: ["Trent Small <[email protected]>"] | ||
authors: ["Trent Small <[email protected]>"] | ||
license: "MIT" | ||
tags: ["middleware" "composition" "funciton"] | ||
homepage: "https://github.com/skolemlabs/middleware" | ||
doc: "https://skolemlabs.github.io/middleware" | ||
bug-reports: "https://github.com/skolemlabs/middleware/issues" | ||
depends: [ | ||
"ocaml" {>= "4.14.0"} | ||
"alcotest" {with-test & >= "1.2.0"} | ||
"dune" {>= "3.1"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/skolemlabs/middleware.git" | ||
url { | ||
src: | ||
"https://github.com/skolemlabs/middleware/releases/download/0.0.1/middleware-0.0.1.tbz" | ||
checksum: [ | ||
"sha256=ce12c41afc9988aadd04a59c11b0783c7bd8cc1964ae9d4b767a27d263f66298" | ||
"sha512=d6188af8e54b06547e1f1d81ffaaf52eab63c3c96db6ec86658b90d666e9552d70bae6861d84689482953d618b79c12ad94c3089d4342fbee91afd37f8463a10" | ||
] | ||
} | ||
x-commit-hash: "def9b3ff0c112713c83573aefa7ff86164de672a" |