-
Notifications
You must be signed in to change notification settings - Fork 1
ci(nix): Add NixOS package distribution #295
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
Open
edenreich
wants to merge
15
commits into
main
Choose a base branch
from
feat/nixos-package-distribution
base: main
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.
Open
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
Implement complete NixOS packaging support with automated workflows and improved documentation for distributing the Inference Gateway CLI as an official nixpkgs package. Signed-off-by: Eden Reich <[email protected]>
Signed-off-by: Eden Reich <[email protected]>
- Add default.nix entry point for nix-build - Update workflow to use default.nix instead of infer.nix directly - Simplify Darwin framework handling (remove explicit framework dependencies) - Fix CGO_ENABLED to use env attribute set pattern - Update src hash: sha256-ObI6zG8noykPhPq6ESohbkHp6gvUY3Q0qYZl32Kj//I= - Update vendorHash: sha256-BUrb8mvktPPEbokccVEfc2UCLjWP0nTQbLeCxCCb32k= - Remove deprecated darwin.apple_sdk references These changes fix the Cachix build failures and follow modern Nix best practices for buildGoModule packages. Signed-off-by: Eden Reich <[email protected]>
Change ubuntu-24.0 to ubuntu-24.04 to prevent job from hanging. Signed-off-by: Eden Reich <[email protected]>
- Rename infer.nix → package.nix (standard nixpkgs name) - Update default.nix to reference package.nix - Remove redundant nixpkgs-submission/package.nix - Update submission README to reference ../package.nix - Add edenreich as maintainer Final structure: nix/package.nix - Main package definition nix/default.nix - Entry point wrapper nix/nixpkgs-submission/ - Submission guide Signed-off-by: Eden Reich <[email protected]>
Simplify CI by removing unused Cachix binary cache. Can be added back later if needed. Signed-off-by: Eden Reich <[email protected]>
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.
Implement complete NixOS packaging support with automated workflows and improved documentation for distributing the Inference Gateway CLI as an official nixpkgs package.
Signed-off-by: Eden Reich [email protected]