2021-06-28 23:13:55 +00:00
|
|
|
{ lib, buildDunePackage, fetchurl, base64, either, fmt, jsonm, uutf }:
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "repr";
|
2021-07-16 19:40:57 +00:00
|
|
|
version = "0.4.0";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/mirage/${pname}/releases/download/${version}/${pname}-fuzz-${version}.tbz";
|
2021-07-16 19:40:57 +00:00
|
|
|
sha256 = "1kpwgncyxcrq90dn7ilja7c5i88whc3fz4fmq1lwr0ar95d7d48p";
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
minimumOCamlVersion = "4.08";
|
2021-02-05 17:12:51 +00:00
|
|
|
useDune2 = true;
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
base64
|
|
|
|
either
|
2021-06-28 23:13:55 +00:00
|
|
|
fmt
|
|
|
|
jsonm
|
|
|
|
uutf
|
2021-02-05 17:12:51 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Dynamic type representations. Provides no stability guarantee";
|
|
|
|
homepage = "https://github.com/mirage/repr";
|
|
|
|
license = licenses.isc;
|
2021-06-28 23:13:55 +00:00
|
|
|
maintainers = with maintainers; [ sternenseemann ];
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
|
|
|
}
|