python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / color / default.nix
blob84d2f11d8629dd2f913bf1152c9f045bd314280c
1 { lib
2 , fetchurl
3 , buildDunePackage
4 , gg
5 }:
7 buildDunePackage rec {
8   pname = "color";
9   version = "0.2.0";
11   useDune2 = true;
12   minimalOCamlVersion = "4.05";
14   src = fetchurl {
15     url = "https://github.com/anuragsoni/color/releases/download/${version}/color-${version}.tbz";
16     sha256 = "0wg3a36i1a7fnz5pf57qzbdghwr6dzp7nnxyrz9m9765lxsn65ph";
17   };
19   propagatedBuildInputs = [
20     gg
21   ];
23   meta = with lib; {
24     description = "Converts between different color formats";
25     license = licenses.mit;
26     maintainers = with maintainers; [ fgaz ];
27     homepage = "https://github.com/anuragsoni/color";
28   };