lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.ppx_yojson_conv: init at 0.15.1

+36
+34
pkgs/development/ocaml-modules/ppx_yojson_conv/default.nix
··· 1 + { 2 + lib, 3 + buildDunePackage, 4 + fetchFromGitHub, 5 + ppx_js_style, 6 + ppx_yojson_conv_lib, 7 + ppxlib, 8 + }: 9 + buildDunePackage rec { 10 + pname = "ppx_yojson_conv"; 11 + version = "0.15.1"; 12 + duneVersion = "3"; 13 + minimumOCamlVersion = "4.08.0"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "janestreet"; 17 + repo = pname; 18 + rev = "v${version}"; 19 + sha256 = "sha256-lSOUSMVgsRiArEhFTKpAj2yFBPbtaIc/SxdPA+24xXs="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + ppx_js_style 24 + ppx_yojson_conv_lib 25 + ppxlib 26 + ]; 27 + 28 + meta = with lib; { 29 + description = "A PPX syntax extension that generates code for converting OCaml types to and from Yojson"; 30 + homepage = "https://github.com/janestreet/ppx_yojson_conv"; 31 + maintainers = with maintainers; [djacu]; 32 + license = with licenses; [mit]; 33 + }; 34 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1314 1314 1315 1315 ppx_tools_versioned = callPackage ../development/ocaml-modules/ppx_tools_versioned { }; 1316 1316 1317 + ppx_yojson_conv = callPackage ../development/ocaml-modules/ppx_yojson_conv {}; 1318 + 1317 1319 ppx_yojson_conv_lib = callPackage ../development/ocaml-modules/ppx_yojson_conv_lib {}; 1318 1320 1319 1321 prettym = callPackage ../development/ocaml-modules/prettym { };