forked from ocaml-cross/opam-cross-windows
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sedlex-windows.2.1 (ocaml-cross#111)
- Loading branch information
Showing
4 changed files
with
42 additions
and
4 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
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,38 @@ | ||
opam-version: "2.0" | ||
synopsis: "An OCaml lexer generator for Unicode" | ||
description: " | ||
sedlex is a lexer generator for OCaml. It is similar to ocamllex, but supports | ||
Unicode. Unlike ocamllex, sedlex allows lexer specifications within regular | ||
OCaml source files. Lexing specific constructs are provided via a ppx syntax | ||
extension. | ||
" | ||
license: "MIT" | ||
doc: "https://ocaml-community.github.io/sedlex/index.html" | ||
maintainer: "Alain Frisch <[email protected]>" | ||
authors: [ | ||
"Alain Frisch <[email protected]>" | ||
"https://github.com/ocaml-community/sedlex/graphs/contributors" | ||
] | ||
homepage: "https://github.com/ocaml-community/sedlex" | ||
dev-repo: "git+https://github.com/ocaml-community/sedlex.git" | ||
bug-reports: "https://github.com/ocaml-community/sedlex/issues" | ||
build: [ | ||
["dune" "build" "-x" "windows" "-p" "sedlex" "-j" jobs] | ||
] | ||
depends: [ | ||
"ocaml-windows" {"4.02.3"} | ||
"dune" {>= "1.11.0"} | ||
"ppx_tools_versioned" | ||
"ppx_tools_versioned-windows" | ||
"ocaml-migrate-parsetree-windows" | ||
"gen" | ||
"gen-windows" | ||
"uchar-windows" | ||
] | ||
url { | ||
src: "https://github.com/ocaml-community/sedlex/archive/v2.1.zip" | ||
checksum: [ | ||
"md5=30fdddb1c9d8301bad3d5b3d2cbbefbf" | ||
"sha512=7c937c5ed234ac6f97aacec5e9f185c4490ab8cc953d071b1bbb93983e5518c4c0fb96782a43348631270c7b4f3e0c5dc312777644724adf955f9a58070b3f12" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -14,4 +14,4 @@ RUN chown -R opam /home/opam/opam-cross-windows | |
|
||
USER opam | ||
|
||
RUN opam update windows | ||
RUN opam update |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ MAINTAINER Romain Beauxis <[email protected]> | |
|
||
ARG OPAM_PKG | ||
|
||
RUN opam list --short --recursive --external --vars os-distribution=mxe --required-by=$OPAM_PKG > /home/opam/mxe-deps | ||
RUN opam list --short --recursive --external --vars os-distribution=mxe,os-family=mingw --required-by=$OPAM_PKG > /home/opam/mxe-deps | ||
|
||
USER root | ||
|
||
|