mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
ocamlPackages.ppx_ast: init at 0.9.0
Ppx_ast selects a specific version of the OCaml Abstract Syntax Tree from the migrate-parsetree project that is not necessarily the same one as the one being used by the compiler. Homepage: https://github.com/janestreet/ppx_ast
This commit is contained in:
parent
ef69326e99
commit
e3c1e37823
24
pkgs/development/ocaml-modules/janestreet/ppx_ast.nix
Normal file
24
pkgs/development/ocaml-modules/janestreet/ppx_ast.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl, ocaml, jbuilder, findlib
|
||||
, ocaml-compiler-libs, ocaml-migrate-parsetree
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocaml${ocaml.version}-ppx_ast-0.9.0";
|
||||
src = fetchurl {
|
||||
url = http://ocaml.janestreet.com/ocaml-core/v0.9/files/ppx_ast-v0.9.0.tar.gz;
|
||||
sha256 = "1hirfmxr8hkf3p39k1pqidabxxhd541d6ddfaqpgxbl51bw9ddmz";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml jbuilder findlib ];
|
||||
propagatedBuildInputs = [ ocaml-compiler-libs ocaml-migrate-parsetree ];
|
||||
|
||||
inherit (jbuilder) installPhase;
|
||||
|
||||
meta = {
|
||||
description = "OCaml AST used by Jane Street ppx rewriters";
|
||||
homepage = https://github.com/janestreet/ppx_ast;
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
inherit (ocaml.meta) platforms;
|
||||
};
|
||||
}
|
@ -573,6 +573,8 @@ let
|
||||
|
||||
ocaml-compiler-libs = callPackage ../development/ocaml-modules/janestreet/ocaml-compiler-libs.nix {};
|
||||
|
||||
ppx_ast = callPackage ../development/ocaml-modules/janestreet/ppx_ast.nix {};
|
||||
|
||||
ppx_core =
|
||||
if lib.versionOlder "4.03" ocaml.version
|
||||
then callPackage ../development/ocaml-modules/janestreet/ppx_core-113_33_01.nix {}
|
||||
|
Loading…
Reference in New Issue
Block a user