Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / ocaml-modules / wtf8 / default.nix
blobfec6c433604eb7db0102da1e13067a327626b51f
1 { lib, fetchurl, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "wtf8";
5   version = "1.0.2";
7   useDune2 = true;
9   minimumOCamlVersion = "4.02";
11   src = fetchurl {
12     url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
13     sha256 = "09ygcxxd5warkdzz17rgpidrd0pg14cy2svvnvy1hna080lzg7vp";
14   };
16   meta = with lib; {
17     homepage = "https://github.com/flowtype/ocaml-wtf8";
18     description = "WTF-8 is a superset of UTF-8 that allows unpaired surrogates.";
19     license = licenses.mit;
20     maintainers = [ maintainers.eqyiel ];
21   };