Unverified Commit aae6a077 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

ocamlPackages.brisk-reconciler: remove `with lib;` (#343671)

parents 8ad4e8d7 cafa67f0
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;
  };
}