1{ buildDunePackage, fetchFromGitHub, lib, reason }:
2
3buildDunePackage rec {
4 pname = "flex";
5 version = "unstable-2020-09-12";
6
7 src = fetchFromGitHub {
8 owner = "jordwalke";
9 repo = "flex";
10 rev = "6ff12fe4f96749ffd3c0ea3d9962742767937b4a";
11 sha256 = "sha256-GomTOdlU5ZwElKK8CM4DEMr51YDIrFKmTxUCGMLL3c4=";
12 };
13
14 nativeBuildInputs = [ reason ];
15
16 meta = with lib; {
17 description = "Native Reason implementation of CSS Flexbox layout. An Yoga project port";
18 homepage = "https://github.com/jordwalke/flex";
19 maintainers = with maintainers; [ ];
20 license = licenses.mit;
21 };
22}