mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
1e665de6b4
http://hydra.nixos.org/build/39411311 ```` hh_shared.c:142:6: error: #error "hh_shared.c requires a architecture that supports memfd_create" ````
32 lines
773 B
Nix
32 lines
773 B
Nix
{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices }:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.30.0";
|
|
name = "flow-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "flow";
|
|
rev = "v${version}";
|
|
sha256 = "1s6l3570r53qjyqs8ghqqgb51rb0skijwjgm6av43xi7b7knkd35";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp bin/flow $out/bin/
|
|
'';
|
|
|
|
buildInputs = [ ocaml libelf ]
|
|
++ 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 ];
|
|
};
|
|
}
|