3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #10940 from msteen/flow

flow: added Linux support
This commit is contained in:
Domen Kožar 2015-11-11 12:03:32 +01:00
commit fba69ef35a

View file

@ -1,4 +1,6 @@
{ stdenv, fetchFromGitHub, ocaml, libelf, cf-private, CoreServices }:
{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices }:
with lib;
stdenv.mkDerivation rec {
version = "0.17.0";
@ -15,13 +17,14 @@ stdenv.mkDerivation rec {
cp bin/flow $out/bin/
'';
buildInputs = [ ocaml libelf cf-private CoreServices ];
buildInputs = [ ocaml libelf ]
++ optionals stdenv.isDarwin [ cf-private CoreServices ];
meta = with stdenv.lib; {
homepage = "http://flowtype.org/";
description = "A static type checker for JavaScript";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
homepage = http://flowtype.org;
license = licenses.bsd3;
platforms = platforms.unix;
maintainers = with maintainers; [ puffnfresh globin ];
};
}