Unverified Commit cafa67f0 authored by Mutsuha Asada's avatar Mutsuha Asada
Browse files

ocamlPackages.brisk-reconciler: remove `with lib;`

parent f88d5e23
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ buildDunePackage rec {
    ppxlib
  ];

  meta = with lib; {
  meta = {
    description = "React.js-like reconciler implemented in OCaml/Reason";
    longDescription = ''
      Easily model any `tree-shaped state` with simple `stateful functions`.
@@ -29,7 +29,7 @@ buildDunePackage rec {
      * stateful functions: Functions that maintain state over time. Imagine that you can take any variable in your function and manage its value over the function's invocation. Now, imagine that any function invocation really creates its own "instance" of the function which will track this state separately from other invocations of this function.
    '';
    homepage = "https://github.com/briskml/brisk-reconciler";
    maintainers = [ ];
    license = licenses.mit;
    maintainers = with lib.maintainers; [ momeemt ];
    license = lib.licenses.mit;
  };
}