forked from mirrors/nixpkgs
darwin purity: flow
This commit is contained in:
parent
2c6052f8e3
commit
137cadb66b
|
@ -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/";
|
||||
|
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue