-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
docs: add NixOS installation instructions to README #45
Conversation
hmm .. just realized crates is considered a "package manager" so perhaps I need a different title than one I used here ... |
1f5083f
to
17c0f71
Compare
or maybe we don't even need a section for system package managers if nixos is only one and other distros probably just use crates? I'll remove the part that adds a new section and just put nixos section directly beneath crates section. |
a397e34
to
8150d44
Compare
Can it be installed like this ?
|
Any of the Nix install methods should work, however its only available in master until I backport it to a stable release like 24.11, 24.05, etc. So thinking about it, even though tenere is in nixpkgs now, maybe hold off merging this until it's in one of the main release branches so that most ppl using nixos/nixpkgs will actually see it show up for them. As of now one needs to clone the nixpkgs repo and install it using the master branch. It's not yet visible in any of the channels. |
@pythops The backport to nixpkgs release-24.11 should work out the box, but for backport to release-24.05 I need to downgrade the cargo.lock to version 3: NixOS/nixpkgs#364671 Any objections? |
You are the maintainer of the nixpackage 😄 You do what you think is right buddy :) |
I wanted to make sure you weren't aware of any issues running tenere using deps generated for cargo.lock v3. I'll assume not, I just like to be thorough |
not that I know no. |
4bee05f
to
d7c0738
Compare
@pythops - tenere has been successfully backported to nixos release-24.11 (NixOS/nixpkgs#364564). It can now be installed via normal release channels, as well as via I still have a PR opened for backport to release-24.05 (NixOS/nixpkgs#364671) for ppl running older version. |
README.md
Outdated
tenere | ||
]; | ||
``` | ||
or ```nix-env -iA nixpkgs.tenere``` on Non-NixOS systems |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe you can have it in multiple lines, Something like
Or as following for Non-NixOs systems
\```
nix-env -iA nixpkgs.tenere
\```
Add NixOS package installation instructions. This reflects tenere's recent addition to nixpkgs in release-24.11
d7c0738
to
927571c
Compare
Hows this?: Lines 56 to 59 in 927571c
|
Thanks buddy for the PR and the work done to add support for nix 🙏 |
Add NixOS package installation section under a new "Package Managers" category in the installation instructions. This reflects tenere's recent addition to nixpkgs (NixOS/nixpkgs/pull/363556)
Resolves #43