99fa3c8d67
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. These checks were done: - built on NixOS - ran ‘/nix/store/sxq54vh13q17bn31lsz9gszx4abr8qcc-flow-0.72.0/bin/flow --help’ got 0 exit code - ran ‘/nix/store/sxq54vh13q17bn31lsz9gszx4abr8qcc-flow-0.72.0/bin/flow version’ and found version 0.72.0 - found 0.72.0 with grep in /nix/store/sxq54vh13q17bn31lsz9gszx4abr8qcc-flow-0.72.0 - directory tree listing: https://gist.github.com/cf04036cc5756f0589397f496e3e5e87
34 lines
886 B
Nix
34 lines
886 B
Nix
{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices,
|
|
findlib, camlp4, sedlex, ocamlbuild, lwt_ppx, wtf8, dtoa }:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.72.0";
|
|
name = "flow-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "flow";
|
|
rev = "v${version}";
|
|
sha256 = "1lfnl1crwkygzbv3l85n30dqsfz627xrnmn4z3zxh7lazir5h8b8";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp bin/flow $out/bin/
|
|
'';
|
|
|
|
buildInputs = [
|
|
ocaml libelf findlib camlp4 sedlex ocamlbuild lwt_ppx wtf8 dtoa
|
|
] ++ optionals stdenv.isDarwin [ cf-private CoreServices ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A static type checker for JavaScript";
|
|
homepage = http://flowtype.org;
|
|
license = licenses.bsd3;
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
|
maintainers = with maintainers; [ puffnfresh globin ];
|
|
};
|
|
}
|