python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / brisk-reconciler / default.nix
blob925f899995f00b4c6a5ad764bb4f687b26546949
1 { buildDunePackage, fetchFromGitHub, lib, reason, ppxlib }:
3 buildDunePackage rec {
4   pname = "brisk-reconciler";
5   version = "unstable-2020-12-02";
7   src = fetchFromGitHub {
8     owner = "briskml";
9     repo = "brisk-reconciler";
10     rev = "c9d5c4cf5dd17ff2da994de2c3b0f34c72778f70";
11     sha256 = "sha256-AAB4ZzBnwfwFXOAqX/sIT6imOl70F0YNMt96SWOOE9w=";
12   };
14   nativeBuildInputs = [ reason ];
16   buildInputs = [
17     ppxlib
18   ];
20   meta = with lib; {
21     description = "React.js-like reconciler implemented in OCaml/Reason";
22     longDescription = ''
23       Easily model any `tree-shaped state` with simple `stateful functions`.
25       Definitions:
26       * tree-shaped state: Any tree shaped-state like the DOM tree, app navigation state, or even rich text document!
27       * 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.
28     '';
29     homepage = "https://github.com/briskml/brisk-reconciler";
30     maintainers = with maintainers; [ ];
31     license = licenses.mit;
32   };