fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / ocaml-modules / flex / default.nix
blobd638e057ea1ece6cc4aa090c34e8484185891843
2   buildDunePackage,
3   fetchFromGitHub,
4   lib,
5   reason,
6 }:
8 buildDunePackage rec {
9   pname = "flex";
10   version = "unstable-2020-09-12";
12   src = fetchFromGitHub {
13     owner = "jordwalke";
14     repo = "flex";
15     rev = "6ff12fe4f96749ffd3c0ea3d9962742767937b4a";
16     sha256 = "sha256-GomTOdlU5ZwElKK8CM4DEMr51YDIrFKmTxUCGMLL3c4=";
17   };
19   nativeBuildInputs = [ reason ];
21   meta = with lib; {
22     description = "Native Reason implementation of CSS Flexbox layout. An Yoga project port";
23     homepage = "https://github.com/jordwalke/flex";
24     maintainers = [ ];
25     license = licenses.mit;
26   };