jbuilder: 1.0+beta7 -> 1.0+beta12

ocamlPackages.sexplib: 0.9.1 -> 0.9.2

ocamlPackages.base: 0.9.1 -> 0.9.3

ocamlPackages.ppx_driver: 0.9.0 -> 0.9.1

ocamlPackages.bin_prot: 0.9.0 -> 0.9.1

ocamlPackages.ppx_inline_test: 0.9.0 -> 0.9.2
This commit is contained in:
Vincent Laporte 2017-08-24 17:50:00 +00:00
parent 01495f3255
commit 77404dbf37
2 changed files with 13 additions and 10 deletions

View File

@ -8,15 +8,15 @@ rec {
sexplib = janePackage {
name = "sexplib";
version = "0.9.1";
hash = "087md38l73lp24j2lmwi053jjav00k11r06s6whmff1xlhj70wdj";
version = "0.9.2";
hash = "0szj7gi5ksy7kif5g71rkr6xhxc41xl8hq6s5zz610cjyngzyzjl";
meta.description = "Automated S-expression conversion";
};
base = janePackage {
name = "base";
version = "0.9.1";
hash = "09gj30zyv23gv3gkf2pb3d3ywmkgd74dq8sfaps5xarr3grvndhm";
version = "0.9.3";
hash = "14v3zsr7za9h1gkxdmkk1yagnrfjk3y9snraywv9hsqbhv39ajvv";
propagatedBuildInputs = [ sexplib ];
meta.description = "Full standard library replacement for OCaml";
};
@ -65,7 +65,8 @@ rec {
ppx_driver = janePackage {
name = "ppx_driver";
hash = "1w3khwnvy18nkh673zrbhcs6051hs7z5z5dib7npkvpxndw22hwj";
version = "0.9.1";
hash = "1amz49x6v4sh1v2my6618cah0zv5i7jmsapbk9ydps6419g5asay";
buildInputs = [ ocamlbuild ];
propagatedBuildInputs = [ ppx_optcomp ];
meta.description = "Feature-full driver for OCaml AST transformers";
@ -173,7 +174,8 @@ rec {
bin_prot = janePackage {
name = "bin_prot";
hash = "0cy6lhksx4jypkrnj3ha31p97ghslki0bx5rpnzc2v28mfp6pzh1";
version = "0.9.1";
hash = "1bgcmkgz6b5i522996x589zsaiy5b3h37887lwbqvpps8by2ayvk";
propagatedBuildInputs = [ ppx_compare ppx_custom_printf ppx_fields_conv ppx_variants_conv ];
meta.description = "Binary protocol generator";
};
@ -203,7 +205,8 @@ rec {
ppx_inline_test = janePackage {
name = "ppx_inline_test";
hash = "01xml88ahrzqnc7g1ib184jbqxpdfx4gn2wdvi09dpi4i0jahy33";
version = "0.9.2";
hash = "17j36ihiqprbpa2bk02449k93vaidid2sly5djrk848ccjq8n5aa";
propagatedBuildInputs = [ ppx_metaquot ];
meta.description = "Syntax extension for writing in-line tests in OCaml code";
};

View File

@ -1,10 +1,10 @@
{ stdenv, fetchzip, ocaml, opam }:
stdenv.mkDerivation {
name = "jbuilder-1.0+beta7";
name = "jbuilder-1.0+beta12";
src = fetchzip {
url = http://github.com/janestreet/jbuilder/archive/1.0+beta7.tar.gz;
sha256 = "10qjqs6gv9y8s580gvssjm56xw72pcxd5lkpzqpz6cz4390d45i8";
url = http://github.com/janestreet/jbuilder/archive/1.0+beta12.tar.gz;
sha256 = "1gqpp1spcya9951mw2kcavam8v0m5s6zc5pjb7bkv5d71si04rlf";
};
buildInputs = [ ocaml ];