Skip to content

Commit

Permalink
Merge pull request NixOS#274483 from r-ryantm/auto-update/gotrue-supa…
Browse files Browse the repository at this point in the history
…base

gotrue-supabase: 2.105.0 -> 2.155.1
  • Loading branch information
wegank authored Jul 9, 2024
2 parents 5fbd57a + 355152d commit c816e67
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkgs/tools/security/gotrue/supabase.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,38 +6,38 @@
}:

buildGoModule rec {
pname = "gotrue";
version = "2.105.0";
pname = "auth";
version = "2.155.1";

src = fetchFromGitHub {
owner = "supabase";
repo = pname;
repo = "auth";
rev = "v${version}";
hash = "sha256-6tFXuVBd7UptoVMSse1Pk9ok6XyGL994pfFkFTyc5I0=";
hash = "sha256-W2hJw/cn6Ss5LBBIJ7q0t5wbEHJ7WaGGvxrfRQ84Y8A=";
};

vendorHash = "sha256-cwTwze8WuhL5exaY5HJYDgcxNB9O1QuFpJgZmj6R838=";
vendorHash = "sha256-qL1uHUNw0QqAswnP2E2UrdJKao9ow8HHVWPK010LVgI=";

ldflags = [
"-s"
"-w"
"-X github.com/supabase/gotrue/internal/utilities.Version=${version}"
"-X github.com/supabase/auth/internal/utilities.Version=${version}"
];

# integration tests require network to connect to postgres database
doCheck = false;

passthru.tests.version = testers.testVersion {
package = gotrue-supabase;
command = "gotrue version";
command = "auth version";
inherit version;
};

meta = with lib; {
homepage = "https://github.com/supabase/gotrue";
homepage = "https://github.com/supabase/auth";
description = "JWT based API for managing users and issuing JWT tokens";
mainProgram = "gotrue";
changelog = "https://github.com/supabase/gotrue/releases/tag/v${version}";
mainProgram = "auth";
changelog = "https://github.com/supabase/auth/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ urandom ];
};
Expand Down

0 comments on commit c816e67

Please sign in to comment.