depot/third_party/nixpkgs/pkgs/development/ocaml-modules/repr/default.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

32 lines
702 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, base64, either, fmt, jsonm, uutf, optint }:
buildDunePackage rec {
pname = "repr";
version = "0.6.0";
src = fetchFromGitHub {
owner = "mirage";
repo = "repr";
rev = version;
sha256 = "sha256-jF8KmaG07CT26O/1ANc6s1yHFJqhXDtd0jgTA04tIgw=";
};
minimalOCamlVersion = "4.08";
strictDeps = true;
propagatedBuildInputs = [
base64
either
fmt
jsonm
uutf
optint
];
meta = with lib; {
description = "Dynamic type representations. Provides no stability guarantee";
homepage = "https://github.com/mirage/repr";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
};
}