You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I didn't see any reference to this in the README and struggled because of shell quote escaping, but here is my take on how to run this without having to have your own flake:
nix shell github:stackbuilders/nixpkgs-terraform#'"1.1.3"'
# or
nix run github:stackbuilders/nixpkgs-terraform#'"1.1.3"' --
Note the " wrapped with ' so that your shell passes the correct string to nix.
The text was updated successfully, but these errors were encountered:
hi :) thanks, although I don't have a problem, I was just proposing to add this in the README for future users that would be confused by the utilization of dots . in the package name, which forces you to fight quotes interpretation between shells and nix.
I should have made a PR instead, my bad :)
I didn't see any reference to this in the README and struggled because of shell quote escaping, but here is my take on how to run this without having to have your own flake:
Note the
"
wrapped with'
so that your shell passes the correct string to nix.The text was updated successfully, but these errors were encountered: