ocamlPackages.brisk-reconciler: remove with lib;

This commit is contained in:
Mutsuha Asada 2024-09-22 17:33:15 +09:00
parent f88d5e23d9
commit cafa67f066
No known key found for this signature in database
GPG Key ID: ACB54F0CBC6AA7C6

View File

@ -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;
};
}