mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
ocamlPackages.ppx_traverse_builtins: init at 0.9.0
This OCaml library defines the default methods for builtin types (int, string, list, ...) for Ppx_traverse. Homepage: https://github.com/janestreet/ppx_traverse_builtins
This commit is contained in:
parent
5f61654864
commit
a7a3d91039
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl, ocaml, jbuilder, findlib }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocaml${ocaml.version}-ppx_traverse_builtins-0.9.0";
|
||||
src = fetchurl {
|
||||
url = http://ocaml.janestreet.com/ocaml-core/v0.9/files/ppx_traverse_builtins-v0.9.0.tar.gz;
|
||||
sha256 = "0zmf9kybll0xn8dsj10v260l0zwjyykimqml9rl7xqyjyl1rmnx6";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml jbuilder findlib ];
|
||||
|
||||
inherit (jbuilder) installPhase;
|
||||
|
||||
meta = {
|
||||
description = "Builtins for Ppx_traverse";
|
||||
homepage = https://github.com/janestreet/ppx_traverse_builtins;
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
inherit (ocaml.meta) platforms;
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
@ -682,6 +682,8 @@ let
|
||||
then callPackage ../development/ocaml-modules/janestreet/ppx_jane-113_33_00.nix {}
|
||||
else callPackage ../development/ocaml-modules/janestreet/ppx-jane.nix {};
|
||||
|
||||
ppx_traverse_builtins = callPackage ../development/ocaml-modules/janestreet/ppx_traverse_builtins.nix {};
|
||||
|
||||
|
||||
# Core sublibs
|
||||
typerep =
|
||||
|
Loading…
Reference in New Issue
Block a user