mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
commit
fba69ef35a
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user