-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathxs.opam
31 lines (31 loc) · 878 Bytes
/
xs.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Xs is a concatenative array language inspired by kdb+/q"
description: """
Xs is a unique concatenative language that aims to match the power
of q with more flexibility and expressiveness. Xs is dynamically
typed with dynamic scoping and puts a strong emphasis on terseness,
beauty, and simplicity."""
maintainer: ["[email protected]"]
authors: ["Sturm Mabie"]
license: "Public Domain"
homepage: "https://github.com/smabie/xs"
bug-reports: "https://github.com/smabie/xs/issues"
depends: [
"ocaml" "dune" "core" "angstrom" "res" "ppx_jane" "ppx_inline_test"
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/smabie/xs.git"