mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
45 lines
1.0 KiB
Nix
45 lines
1.0 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, gotrue-supabase
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "auth";
|
|
version = "2.163.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "supabase";
|
|
repo = "auth";
|
|
rev = "v${version}";
|
|
hash = "sha256-Y+A8uYC6FUmAgD4TMXShhknVdlmSZ5UwiqEfJUEpq6k=";
|
|
};
|
|
|
|
vendorHash = "sha256-Tg2X4vLuff5XTegDl4vrbvCycbuq4BgEq+O5FhWO+Ds=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-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 = "auth version";
|
|
inherit version;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/supabase/auth";
|
|
description = "JWT based API for managing users and issuing JWT tokens";
|
|
mainProgram = "auth";
|
|
changelog = "https://github.com/supabase/auth/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ urandom ];
|
|
};
|
|
}
|