lol

js_of_ocaml: 2.6 -> 2.7

authored by

Florent Becker and committed by
Florent Becker
527c1cba 2ddee12a

+4 -10
+4 -10
pkgs/development/tools/ocaml/js_of_ocaml/default.nix
··· 1 1 {stdenv, fetchurl, ocaml, findlib, ocaml_lwt, menhir, ocsigen_deriving, camlp4, 2 2 cmdliner, tyxml, reactivedata, cppo, which, base64}: 3 3 4 - let camlp4_patch = fetchurl { 5 - url = "https://github.com/FlorentBecker/js_of_ocaml/commit/3b511c5bb777d5049c49d7a04c01f142de7096b9.patch"; 6 - sha256 = "c92eda8be504cd41eb242166fc815af496243b63d4d21b169f5b62ec5ace2d39"; 7 - }; 8 - in 9 - 10 4 stdenv.mkDerivation { 11 - name = "js_of_ocaml-2.6"; 5 + name = "js_of_ocaml-2.7"; 12 6 src = fetchurl { 13 - url = https://github.com/ocsigen/js_of_ocaml/archive/2.6.tar.gz; 14 - sha256 = "0q34lrn70dvz41m78bwgriyq6dxk97g8gcyg80nvxii4jp86dw61"; 7 + url = https://github.com/ocsigen/js_of_ocaml/archive/2.7.tar.gz; 8 + sha256 = "1dali1akyd4zmkwav0d957ynxq2jj6cc94r4xiaql7ca89ajz4jj"; 15 9 }; 16 10 17 11 buildInputs = [ocaml findlib menhir ocsigen_deriving 18 12 cmdliner tyxml reactivedata cppo which base64]; 19 13 propagatedBuildInputs = [ ocaml_lwt camlp4 ]; 20 14 21 - patches = [ ./Makefile.conf.diff camlp4_patch ]; 15 + patches = [ ./Makefile.conf.diff ]; 22 16 23 17 createFindlibDestdir = true; 24 18