Merge pull request #10454 from mayflower/update-flow

flow: 0.14.0 -> 0.17.0
This commit is contained in:
Domen Kožar 2015-10-18 12:55:04 +02:00
commit eec69c876a

View file

@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, ocaml, libelf }:
stdenv.mkDerivation rec {
version = "0.14.0";
version = "0.17.0";
name = "flow-${version}";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "v${version}";
sha256 = "02adbn2h5bfc4drcpbalq7acx573a657ik3008fr8s9qyqdp2nl6";
sha256 = "1hc4gspxp43svr36l4fn4fpd7d9myg8hf5hph5y1lq9ihqaiymsp";
};
installPhase = ''
@ -22,6 +22,6 @@ stdenv.mkDerivation rec {
description = "A static type checker for JavaScript";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
maintainers = with maintainers; [ puffnfresh ];
maintainers = with maintainers; [ puffnfresh globin ];
};
}