nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / brisk-reconciler / default.nix
blob20fc2b0f97cbd7a0b5cca1b15fa9c9d6e632a623
2   buildDunePackage,
3   fetchFromGitHub,
4   lib,
5   reason,
6   ppxlib,
7 }:
9 buildDunePackage rec {
10   pname = "brisk-reconciler";
11   version = "unstable-2020-12-02";
13   duneVersion = "3";
15   src = fetchFromGitHub {
16     owner = "briskml";
17     repo = "brisk-reconciler";
18     rev = "c9d5c4cf5dd17ff2da994de2c3b0f34c72778f70";
19     sha256 = "sha256-AAB4ZzBnwfwFXOAqX/sIT6imOl70F0YNMt96SWOOE9w=";
20   };
22   nativeBuildInputs = [ reason ];
24   buildInputs = [
25     ppxlib
26   ];
28   meta = {
29     description = "React.js-like reconciler implemented in OCaml/Reason";
30     longDescription = ''
31       Easily model any `tree-shaped state` with simple `stateful functions`.
33       Definitions:
34       * tree-shaped state: Any tree shaped-state like the DOM tree, app navigation state, or even rich text document!
35       * 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.
36     '';
37     homepage = "https://github.com/briskml/brisk-reconciler";
38     maintainers = with lib.maintainers; [ momeemt ];
39     license = lib.licenses.mit;
40   };