-
Notifications
You must be signed in to change notification settings - Fork 69
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
Nix shell #13
Comments
With |
I mostly mean installing all dependencies, and setting env variables, so make for example can build the local project via the makefile in the same folder (if it's a make project) |
At the moment, an additional { system ? builtins.currentSystem }:
(import ./. { src = ./.; inherit system; }).shellNix |
In my case I needed to put: (
import (fetchTarball https://github.com/edolstra/flake-compat/archive/master.tar.gz) {
src = builtins.fetchGit ./.;
}
).shellNix (the solution proposed by zimbatm gave me some errors) However, while now I can use both |
Hey, I'm not finding |
Provide a way to create a shell.nix with the same behavior as nix develop
The text was updated successfully, but these errors were encountered: