mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
supabase-cli: init at 1.27.0
This commit is contained in:
parent
9bf4ec6909
commit
3ff39f984f
43
pkgs/development/tools/supabase-cli/default.nix
Normal file
43
pkgs/development/tools/supabase-cli/default.nix
Normal file
@ -0,0 +1,43 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "supabase-cli";
|
||||
version = "1.27.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "supabase";
|
||||
repo = "cli";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-gAfgqOeJ1cQ5Igxcut0FXkzhK38Q/mUTXfFaZE0dNCs=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-RO9dZP236Kt8SSpZFF7KRksrjgwiEkPxE5DIMUK69Kw=";
|
||||
|
||||
ldflags = [ "-s" "-w" "-X" "github.com/supabase/cli/cmd.version=${version}" ];
|
||||
|
||||
doCheck = false; # tests are trying to connect to localhost
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
postInstall = ''
|
||||
rm $out/bin/{codegen,docgen,listdep}
|
||||
mv $out/bin/{cli,supabase}
|
||||
|
||||
installShellCompletion --cmd supabase \
|
||||
--bash <($out/bin/supabase completion bash) \
|
||||
--fish <($out/bin/supabase completion fish) \
|
||||
--zsh <($out/bin/supabase completion zsh)
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CLI for interacting with supabase";
|
||||
homepage = "https://github.com/supabase/cli";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ gerschtli ];
|
||||
mainProgram = "supabase";
|
||||
};
|
||||
}
|
@ -18116,6 +18116,8 @@ with pkgs;
|
||||
|
||||
summon = callPackage ../development/tools/summon { };
|
||||
|
||||
supabase-cli = callPackage ../development/tools/supabase-cli { };
|
||||
|
||||
svlint = callPackage ../development/tools/analysis/svlint { };
|
||||
|
||||
svls = callPackage ../development/tools/misc/svls { };
|
||||
|
Loading…
Reference in New Issue
Block a user