this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix color package

See https://github.com/ocaml/opam-repository/issues/26956

+43
+43
packages/color/color.0.3.0/opam
··· 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 <anuragsoni.13@gmail.com>" 7 + "Ambre Austen Suhamy <ambre@tarides.com>" 8 + ] 9 + authors: ["Anurag Soni <anuragsoni.13@gmail.com>"] 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 + }