summary refs log tree commit diff
path: root/pkgs/misc/vscode-extensions/rescript/rescript-editor-analysis.nix
blob: 518280b4b06b913840eb09876242669f7411fc15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib, stdenv, fetchFromGitHub, bash, ocaml }:

stdenv.mkDerivation {
  pname = "rescript-editor-analysis";
  version = "1.1.3";

  src = fetchFromGitHub {
    owner = "rescript-lang";
    repo = "rescript-vscode";
    rev = "8d0412a72307b220b7f5774e2612760a2d429059";
    sha256 = "rHQtfuIiEWlSPuZvNpEafsvlXCj2Uv1YRR1IfvKfC2s=";
  };

  nativeBuildInputs = [ ocaml ];

  postPatch = ''
    cd analysis
    substituteInPlace Makefile --replace "/bin/bash" "${bash}/bin/bash"
  '';

  installPhase = ''
    install -D -m0555 rescript-editor-analysis.exe $out/bin/rescript-editor-analysis.exe
  '';

  meta = with lib; {
    description = "Analysis binary for the ReScript VSCode plugin";
    homepage = "https://github.com/rescript-lang/rescript-vscode";
    maintainers = with maintainers; [ dlip ];
    license = licenses.mit;
  };
}