-
Notifications
You must be signed in to change notification settings - Fork 543
feat: add a nix default package and developer shell for gotrue
#2166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
yvan-sraka
wants to merge
14
commits into
supabase:master
Choose a base branch
from
yvan-sraka:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… while evaluating 'strict' to select 'drvPath' on it at /builtin/derivation.nix:1:552: … while calling the 'derivationStrict' builtin at /builtin/derivation.nix:1:208: (stack trace truncated; use '--show-trace' to show the full trace) error: attribute 'gocode' missing at /nix/store/7r2yz90q994vr66n8gy7r9wwjvd6pzif-source/flake.nix:270:15: 269| pkgs.go-outline 270| pkgs.gocode | ^ 271| pkgs.gopkgs Did you mean one of gecode, avocode, goose, lolcode or qrcode?
The flake now provides a straightforward devshell, a default package (the binary built from the Go sources in this repository), and an auth NixOS module with default settings that are turned into the required configuration files and a systemd service. Some utility scripts for managing the service have been removed, as we now expect this to be handled directly through systemd utilities.
Only test that the service starts for now.
as per commit supabase/postgres@493bd39 (HEAD -> develop, origin/develop, origin/HEAD) Author: Chris Stockton <[email protected]> Date: Wed Sep 17 07:48:52 2025 -0700 feat: tighten gotrue.service deps and startup behavior (supabase#1783)
Avoid rebuilding when unrelated files change.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR makes some fixes and tweaks on top of #2020 (it's used for working on the system-manager modules integration in supabase/postgres#1787).
The flake have been rewritten using blueprint framework, it now provides a straightforward
devshell
, a defaultpackage
(the binary built from the Go sources in this repository), and an auth NixOSmodule
with default settings that are turned into the required configuration files and asystemd
service. Some utility scripts for managing the service have been removed, as we now expect this to be handled directly throughsystemd
utilities.