57fcacf214
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/flow/versions
28 lines
916 B
Nix
28 lines
916 B
Nix
{ stdenv, fetchFromGitHub, ocamlPackages, cf-private, CoreServices }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.86.0";
|
|
name = "flow-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "flow";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0sxg066bfkgqyq2fcjkff4jbhpxrzsqgz53h2b4wscxr076r9bjp";
|
|
};
|
|
|
|
installPhase = ''
|
|
install -Dm755 -t $out/bin bin/flow
|
|
'';
|
|
|
|
buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild dtoa core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec ppx_tools_versioned visitors wtf8 ])
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ cf-private CoreServices ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A static type checker for JavaScript";
|
|
homepage = https://flow.org/;
|
|
license = licenses.mit;
|
|
platforms = ocamlPackages.ocaml.meta.platforms;
|
|
maintainers = with maintainers; [ puffnfresh globin ];
|
|
};
|
|
}
|