depot/third_party/nixpkgs/pkgs/development/ocaml-modules/repr/default.nix
Default email 0fe1cd7bea Project import generated by Copybara.
GitOrigin-RevId: c6c4a3d45ab200f17805d2d86a1ff1cc7ca2b186
2021-07-16 21:40:57 +02:00

29 lines
714 B
Nix

{ lib, buildDunePackage, fetchurl, base64, either, fmt, jsonm, uutf }:
buildDunePackage rec {
pname = "repr";
version = "0.4.0";
src = fetchurl {
url = "https://github.com/mirage/${pname}/releases/download/${version}/${pname}-fuzz-${version}.tbz";
sha256 = "1kpwgncyxcrq90dn7ilja7c5i88whc3fz4fmq1lwr0ar95d7d48p";
};
minimumOCamlVersion = "4.08";
useDune2 = true;
propagatedBuildInputs = [
base64
either
fmt
jsonm
uutf
];
meta = with lib; {
description = "Dynamic type representations. Provides no stability guarantee";
homepage = "https://github.com/mirage/repr";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
};
}