From 1e665de6b48731718cf46868008a2e095ca44330 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Fri, 2 Sep 2016 18:50:09 +0300 Subject: [PATCH] flow: Broken on i686 http://hydra.nixos.org/build/39411311 ```` hh_shared.c:142:6: error: #error "hh_shared.c requires a architecture that supports memfd_create" ```` --- pkgs/development/tools/analysis/flow/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index 618d87f8b0a..1913278368e 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { description = "A static type checker for JavaScript"; homepage = http://flowtype.org; license = licenses.bsd3; - platforms = platforms.unix; + platforms = [ "x86_64-linux" "x86_64-darwin" ]; maintainers = with maintainers; [ puffnfresh globin ]; }; }