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
Currently:
final.haskell-nix.project' { src = ./.; compiler-nix-name = "ghc964"; };
Chokes with:
> stack-to-nix: /build/tmp.0LXUnio927/mysubproject: getDirectoryContents:openDirStream: does not exist (No such file or directory)
Where mysubproject is a git submodule listed in stack.yaml as a local package.
mysubproject
stack.yaml
The text was updated successfully, but these errors were encountered:
Solved with nix build '.?submodules=1#myattr' due to NixOS/nix#6633
nix build '.?submodules=1#myattr'
Sorry, something went wrong.
For some reason on MacOS I've not been able to get . on its own to work. Instead I have to put the full URL in:
.
nix develop 'git+file:///Users/hamish/ghcjs-project?submodules=1#'
No branches or pull requests
Currently:
Chokes with:
Where
mysubproject
is a git submodule listed instack.yaml
as a local package.The text was updated successfully, but these errors were encountered: