Open mtahernia opened 4 months ago
Hi, thank you for the PR. I am unfamiliar with NixOS and flake. Could you please explain why this is needed, how installation would work on NixOS and whether the files have to be at the root of the repository? (I would rather prefer adding a folder for packaging instead of cluttering root)
This has been stale for a while. Any chance you can answer my questions? I am not against merging this, but would need to understand a bit more about it
Hi, apologies for my late response
Nix is a package management system based on Nix's functional programming language. You can find many resources about it online and from their official website. NixOS is not as user-friendly as distributions such as Ubuntu, but once you overcome the learning curve, it is hard to use any other distribution.
Ideally, we should submit the package to nixpkgs to include it in Nix distribution. (I didn't due to unfamiliarity with the community and lack of time, but I will do at some point). The next best thing is to include a flake for Nix users.
Now for why it has to be in the root, it doesn't have to be, but having it at the root of the repo is more convenient.
Here are some possibilities:
In my fork of LibreVNA, I have a branch called nixos-support
where flake.nix
and flake.lock
are present at the root of the repository. Anyone with Nix can run the following command to build and run LibreVNA-GUI
:
nix run github:mtahernia/LibreVNA/nixos-support
This will pull the repo and build it and run the software. (also can install with nix,...)
If the files were in the main branch, you can omit the branch and simply run
nix run github:jankae/LibreVNA
They can also be in a subdirectory. Imagine flake.nix and flake.lock are located in package/nix
of a branch test_branch
; then one can use the following:
nix run github:jankae/LibreVNA/test_branch?dir=package/nix
flake.nix
and flake.lock
nix run github:jankae/LibreVNA-nix
I hope this answers your question. Many thanks for your incredible work :)
I added a Nix flake to package the LibreVNA-GUI for NixOS users.