Files

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

30 lines
582 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
fetchFromGitHub,
yojson,
}:
buildDunePackage rec {
pname = "ppx_yojson_conv_lib";
version = "0.17.0";
minimalOCamlVersion = "4.02.3";
src = fetchFromGitHub {
owner = "janestreet";
repo = pname;
rev = "v${version}";
hash = "sha256-XGgpcAEemBNEagblBjpK+BiL0OUsU2JPqOq+heHbqVk=";
};
propagatedBuildInputs = [ yojson ];
meta = with lib; {
description = "Runtime lib for ppx_yojson_conv";
homepage = "https://github.com/janestreet/ppx_yojson_conv_lib";
maintainers = [ ];
license = licenses.mit;
};
}