darwin purity: flow

This commit is contained in:
Jude Taylor 2015-11-03 04:53:19 -08:00
parent 2c6052f8e3
commit 137cadb66b
2 changed files with 6 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, ocaml, libelf }:
{ stdenv, fetchFromGitHub, ocaml, libelf, cf-private, CoreServices }:
stdenv.mkDerivation rec {
version = "0.17.0";
@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
cp bin/flow $out/bin/
'';
buildInputs = [ ocaml libelf ];
buildInputs = [ ocaml libelf cf-private CoreServices ];
meta = with stdenv.lib; {
homepage = "http://flowtype.org/";

View file

@ -5537,7 +5537,10 @@ let
findbugs = callPackage ../development/tools/analysis/findbugs { };
flow = callPackage ../development/tools/analysis/flow { };
flow = callPackage ../development/tools/analysis/flow {
inherit (darwin.apple_sdk.frameworks) CoreServices;
inherit (darwin) cf-private;
};
framac = callPackage ../development/tools/analysis/frama-c { };