stevenblack-blocklist: 3.15.5 -> 3.15.8 (#372042)
[NixPkgs.git] / pkgs / development / ocaml-modules / color / default.nix
blob53a1c5273f8ca18400dc47ec0a2acd7a4479612f
2   lib,
3   fetchurl,
4   buildDunePackage,
5   gg,
6 }:
8 buildDunePackage rec {
9   pname = "color";
10   version = "0.2.0";
12   useDune2 = true;
13   minimalOCamlVersion = "4.05";
15   src = fetchurl {
16     url = "https://github.com/anuragsoni/color/releases/download/${version}/color-${version}.tbz";
17     sha256 = "0wg3a36i1a7fnz5pf57qzbdghwr6dzp7nnxyrz9m9765lxsn65ph";
18   };
20   propagatedBuildInputs = [
21     gg
22   ];
24   meta = with lib; {
25     description = "Converts between different color formats";
26     license = licenses.mit;
27     maintainers = with maintainers; [ fgaz ];
28     homepage = "https://github.com/anuragsoni/color";
29   };