Skip to content

Commit 7a5a79a

Browse files
authored
Merge pull request #25936 from emilienlemaire/opam-publish-imguiml.v1.90.6
Package imguiml.v1.90.6
2 parents c621168 + 88ecd1f commit 7a5a79a

File tree

1 file changed

+66
-0
lines changed
  • packages/imguiml/imguiml.v1.90.6

1 file changed

+66
-0
lines changed

packages/imguiml/imguiml.v1.90.6/opam

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
opam-version: "2.0"
2+
synopsis: "ImGUI bindings to OCaml"
3+
description: """
4+
Imguiml provides bindings to ImGui and ImGui_Impl for GLFW and OpenGL3 in OCaml,
5+
through cimgui.
6+
The version follows the version of ImGui for which the package is providing
7+
bindings.
8+
The docking branch is the only one for which we provide bindings.
9+
"""
10+
maintainer: ["Emilien Lemaire <[email protected]>"]
11+
authors: ["Emilien Lemaire <[email protected]>"]
12+
license: "MIT"
13+
tags: ["graphics" "imgui" "ctypes" "bindings"]
14+
homepage: "https://github.com/emilienlemaire/imguiml"
15+
doc: "https://emilienlemaire.github.io/imguiml"
16+
bug-reports: "https://github.com/emilienlemaire/imguiml/issues"
17+
depends: [
18+
"ocaml" {>= "4.08"}
19+
"dune" {>= "3.15"}
20+
"goblint-cil" {>= "2.0.0"}
21+
"ctypes"
22+
"ctypes-foreign" {>= "0.21.1"}
23+
"odoc" {with-doc}
24+
"sherlodoc" {with-doc}
25+
"ppx_expect" {with-test}
26+
"conf-cmake"
27+
"conf-glew"
28+
"conf-glfw3"
29+
]
30+
build: [
31+
["dune" "subst"] {dev}
32+
[
33+
"dune"
34+
"build"
35+
"-p"
36+
name
37+
"-j"
38+
jobs
39+
"@install"
40+
"@runtest" {with-test}
41+
"@doc" {with-doc}
42+
] { os != "macos"}
43+
[
44+
"dune"
45+
"build"
46+
"-p"
47+
name
48+
"-j"
49+
jobs
50+
"@install"
51+
"@runtest" {with-test}
52+
"@doc" {with-doc}
53+
"--profile"
54+
"macosx"
55+
] { os = "macos" }
56+
]
57+
dev-repo: "git+https://github.com/emilienlemaire/imguiml.git"
58+
available: arch != "s390x" & arch != "arm64"
59+
url {
60+
src:
61+
"https://github.com/emilienlemaire/imguiml/archive/refs/tags/v1.90.6.tar.gz"
62+
checksum: [
63+
"sha256=1df5295465d7a4aace1eb8e79cca533bd2a33639db638961dc98ab21bc402349"
64+
"sha512=ad8f8527d9e58f39b7ca4d985beae322887c65cc0388fd72b367b247bbc4dd45c1da04ad045dd3649b38bf96fca42b8c3f903e8f11aa5f5800a0a542084c2c22"
65+
]
66+
}

0 commit comments

Comments
 (0)