930b1c06b1
* ocamlPackages.otr: use Dune 3 * ocamlPackages.h2: use Dune 3 * ocamlPackages.index: use Dune 3 * ocamlPackages.progress: use Dune 3 * ocamlPackages.repr: use Dune 3 * ocamlPackages.emile: use Dune 3 * ocamlPackages.bistro: use Dune 3 * ocamlPackages.base64: 3.5.0 → 3.5.1
33 lines
721 B
Nix
33 lines
721 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;
|
|
hash = "sha256-jF8KmaG07CT26O/1ANc6s1yHFJqhXDtd0jgTA04tIgw=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
duneVersion = "3";
|
|
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 ];
|
|
};
|
|
}
|