biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / language-servers / postgres-lsp / default.nix
blob33855391ea5ab14fde21e3fe67270a2033db5f01
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , protobuf
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "postgres-lsp";
9   version = "0-unstable-2024-03-24";
11   src = fetchFromGitHub {
12     owner = "supabase";
13     repo = "postgres_lsp";
14     rev = "43ca9b675cb152ca7f38cfa6aff6dd2131dfa9a2";
15     hash = "sha256-n7Qbt9fGzC0CcleAtTWDInPz4oaPjI+pvIPrR5EYJ9U=";
16     fetchSubmodules = true;
17   };
19   cargoHash = "sha256-UEcHlkbYMA6xETMryWXsDHyAZYtLncRJn2jA6tvw7gQ=";
21   nativeBuildInputs = [
22     protobuf
23     rustPlatform.bindgenHook
24   ];
26   cargoBuildFlags = [ "-p=postgres_lsp" ];
27   cargoTestFlags = cargoBuildFlags;
29   RUSTC_BOOTSTRAP = 1; # We need rust unstable features
31   meta = with lib; {
32     description = "A Language Server for Postgres";
33     homepage = "https://github.com/supabase/postgres_lsp";
34     license = licenses.mit;
35     maintainers = with maintainers; [ figsoda ];
36     mainProgram = "postgres_lsp";
37   };