-
Notifications
You must be signed in to change notification settings - Fork 163
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
Expose local package derivations from .project #426
Comments
Seems like you could use |
I'm planning on moving |
For now the easiest thing to do is probably factor out the bits of |
You should be able to get a package set from a reflex or obelisk project through the
|
@matthewbauer I think this is more about needing to duplicate a lot of your project's nix expressions. #225 will fix this by letting you define a module that can being merged into other projects easily. |
Currently, if I have to depend on a reflex-platform project
alpha
from another reflex-platform projectbeta
, I've been usingcallCabal2nix
. This is workable, but requires that I duplicate substantial amounts ofalpha
's nix expression inbeta
'sdefault.nix
file. This kind of situation would be improved if reflex-platform's project infrastructure exposed two things:project
so I don't have to usecallCabal2nix
when I depend on them.project
generates so I can use that as my initial package set and avoid duplicating code specifying the transitive dependencies.Is this doable?
The text was updated successfully, but these errors were encountered: