We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
nix-shell
Hi, thanks for creating this.
Could you please add an example with nix-shell?
For example, if I'm running an application with nix-shell like this:
NIX_PATH=nixpkgs=https://github.com/NixOS/nixpkgs/archive/7b1777b1e47d730dea558a5cd9b381cdee7b4f14.tar.gz nix-shell -p element-desktop --run element-desktop
How do I modify the above command to run element-desktop via nixGL?
element-desktop
nixGL
Is a one-liner possible? Or do I have to create a .nix file for every occasion?
.nix
Thank you.
The text was updated successfully, but these errors were encountered:
I figured it out:
export NIX_PATH=nixpkgs=https://github.com/NixOS/nixpkgs/archive/7b1777b1e47d730dea558a5cd9b381cdee7b4f14.tar.gz $(nix-build https://github.com/nix-community/nixGL/archive/master.tar.gz -A nixGLIntel)/bin/nixGLIntel \ nix-shell -p element-desktop --run element-desktop
To sum it up:
$(nix-build URL-to-this-repo-tarball -A nixGLTheFlavorYouWant)/bin/nixGLTheFlavorYouWant
Sorry, something went wrong.
No branches or pull requests
Hi, thanks for creating this.
Could you please add an example with
nix-shell
?For example, if I'm running an application with
nix-shell
like this:How do I modify the above command to run
element-desktop
vianixGL
?Is a one-liner possible? Or do I have to create a
.nix
file for every occasion?Thank you.
The text was updated successfully, but these errors were encountered: