Skip to content

Commit dd68f43

Browse files
authored
Merge pull request ocaml#26927 from ElectreAAS/master
New version of package color: 0.3.0
2 parents a13c289 + 6f8592a commit dd68f43

File tree

1 file changed

+43
-0
lines changed
  • packages/color/color.0.3.0

1 file changed

+43
-0
lines changed

packages/color/color.0.3.0/opam

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis: "Convert between different color formats"
3+
description:
4+
"Library that converts between different color formats. Right now it deals with RGB[A], HSL[A], OkLab, and Oklch formats. All those format convert to and from [Gg.Color.t]"
5+
maintainer: [
6+
"Anurag Soni <[email protected]>"
7+
"Ambre Austen Suhamy <[email protected]>"
8+
]
9+
authors: ["Anurag Soni <[email protected]>"]
10+
license: "MIT"
11+
homepage: "https://github.com/anuragsoni/color"
12+
bug-reports: "https://github.com/anuragsoni/color/issues"
13+
depends: [
14+
"dune" {>= "2.0"}
15+
"ocaml" {>= "4.08.0"}
16+
"gg" {>= "1.0.0"}
17+
"alcotest" {with-test}
18+
"ocaml-lsp-server" {with-dev-setup}
19+
"ocamlformat" {= "0.26.2" & with-dev-setup}
20+
]
21+
build: [
22+
["dune" "subst"] {pinned}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
]
35+
dev-repo: "git+https://github.com/anuragsoni/color.git"
36+
37+
url: {
38+
src: "https://github.com/anuragsoni/color/archive/refs/tags/0.3.0.tar.gz"
39+
checksum: [
40+
"md5=8bb06d9bb169c29f17699fb93809db94"
41+
"sha256=1ffa724cc16fe04aa253a8591eae26b22274f1492d64888f6fb8c2f7165cedbc"
42+
]
43+
}

0 commit comments

Comments
 (0)