nixpkgs/pkgs/development/ocaml-modules/janestreet/ppx-sexp-message.nix

15 lines
449 B
Nix
Raw Normal View History

2016-09-13 23:00:53 +00:00
{stdenv, buildOcamlJane,
ppx_core, ppx_driver, ppx_here, ppx_sexp_conv, ppx_tools}:
buildOcamlJane rec {
name = "ppx_sexp_message";
hash = "0inbff25qii868p141jb1y8n3vjfyz66jpnsl9nma6nkkyjkp05j";
propagatedBuildInputs = [ ppx_core ppx_driver ppx_here ppx_sexp_conv ppx_tools ];
meta = with stdenv.lib; {
description = "Easy construction of S-Expressions";
maintainers = [ maintainers.maurer ];
license = licenses.asl20;
};
}