Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / ocaml-modules / repr / default.nix
blobde6877ddd68e24d053e7fb7d1b38a028915951a3
1 { lib, buildDunePackage, fetchurl, fmt, uutf, jsonm, base64, either }:
3 buildDunePackage rec {
4   pname = "repr";
5   version = "0.2.1";
7   minimumOCamlVersion = "4.08";
9   src = fetchurl {
10     url = "https://github.com/mirage/${pname}/releases/download/${version}/${pname}-fuzz-${version}.tbz";
11     sha256 = "1cbzbawbn71mmpw8y84s1p2pbhc055w1znz64jvr00c7fdr9p8hc";
12   };
14   useDune2 = true;
16   propagatedBuildInputs = [
17     fmt
18     uutf
19     jsonm
20     base64
21     either
22   ];
24   meta = with lib; {
25     description = "Dynamic type representations. Provides no stability guarantee";
26     homepage = "https://github.com/mirage/repr";
27     license = licenses.isc;
28     maintainers = [ maintainers.sternenseemann ];
29   };