nixpkgs/pkgs/development/ocaml-modules/repr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
702 B
Nix
Raw Normal View History

{ 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
2021-06-06 11:04:43 +00:00
fmt
jsonm
uutf
optint
];
meta = with lib; {
description = "Dynamic type representations. Provides no stability guarantee";
homepage = "https://github.com/mirage/repr";
license = licenses.isc;
2021-06-06 11:04:43 +00:00
maintainers = with maintainers; [ sternenseemann ];
};
}