ocamlPackages.earlybird: add update script

+3
+3
pkgs/development/ocaml-modules/earlybird/default.nix
··· 1 { lib, fetchFromGitHub, ocaml, buildDunePackage 2 , cmdliner, dap, fmt, iter, logs, lru, lwt_ppx, lwt_react, menhir, menhirLib, path_glob, ppx_deriving_yojson 3 }: 4 5 if lib.versionAtLeast ocaml.version "4.13" ··· 22 }; 23 24 buildInputs = [ cmdliner dap fmt iter logs lru lwt_ppx lwt_react menhir menhirLib path_glob ppx_deriving_yojson ]; 25 26 meta = { 27 homepage = "https://github.com/hackwaly/ocamlearlybird";
··· 1 { lib, fetchFromGitHub, ocaml, buildDunePackage 2 , cmdliner, dap, fmt, iter, logs, lru, lwt_ppx, lwt_react, menhir, menhirLib, path_glob, ppx_deriving_yojson 3 + , gitUpdater 4 }: 5 6 if lib.versionAtLeast ocaml.version "4.13" ··· 23 }; 24 25 buildInputs = [ cmdliner dap fmt iter logs lru lwt_ppx lwt_react menhir menhirLib path_glob ppx_deriving_yojson ]; 26 + 27 + passthru.updateScript = gitUpdater { }; 28 29 meta = { 30 homepage = "https://github.com/hackwaly/ocamlearlybird";