1{
2 buildDunePackage,
3 fetchFromGitHub,
4 lib,
5 reason,
6}:
7
8buildDunePackage {
9 pname = "flex";
10 version = "unstable-2020-09-12";
11
12 src = fetchFromGitHub {
13 owner = "jordwalke";
14 repo = "flex";
15 rev = "6ff12fe4f96749ffd3c0ea3d9962742767937b4a";
16 sha256 = "sha256-GomTOdlU5ZwElKK8CM4DEMr51YDIrFKmTxUCGMLL3c4=";
17 };
18
19 nativeBuildInputs = [ reason ];
20
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 };
27}