204f7dc335
* ocamlPackages.irmin: 2.6.0 -> 2.7.1 https://github.com/mirage/irmin/releases/tag/2.7.1 * ocamlPackages.index: 1.3.1 -> 1.4.0 https://github.com/mirage/index/releases/tag/1.4.0 * ocamlPackages.repr: 0.3.0 -> 0.4.0 https://github.com/mirage/repr/releases/tag/0.4.0 Co-authored-by: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
29 lines
714 B
Nix
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 ];
|
|
};
|
|
}
|